what is the full from of cpu​

Answers

Answer 1

Explanation:

\(\blue{ central ~proccecing ~unit }\) ⠀


Related Questions

Print numbers 0, 1, 2, ..., userNum as shown, with each number indented by that number of spaces. For each printed line, print the leading spaces, then the number, and then a newline. Hint: Use i and j as loop variables (initialize i and j explicitly). Note: Avoid any other spaces like spaces after the printed number. Ex: userNum = 3 prints:
0
1
2
3

Print numbers 0, 1, 2, ..., userNum as shown, with each number indented by that number of spaces. For

Answers

Answer:

Here is an example of how you could use Java to print the numbers 0, 1, 2, ..., userNum as shown, with each number indented by that number of spaces:

import java.util.Scanner;

public class NumberIndent {

 public static void main(String[] args) {

   // Create a Scanner object to read input from the user

   Scanner input = new Scanner(System.in);

   // Prompt the user to enter a number

   System.out.print("Enter a number: ");

   int userNum = input.nextInt();

   // Use two loop variables, i and j, to print the numbers

   for (int i = 0; i <= userNum; i++) {

     for (int j = 0; j < i; j++) {

       // Print a space for each iteration of the inner loop

       System.out.print(" ");

     }

     // Print the number after the spaces

     System.out.println(i);

   }

 }

}

Explanation:

This code uses a nested for loop to print the numbers 0, 1, 2, ..., userNum, with each number indented by that number of spaces. The outer loop iterates through the numbers, and the inner loop prints a space for each iteration of the outer loop. Finally, the number is printed after the spaces.

I hope this helps! Let me know if you have any questions.

___________ is a global issue and there is a requirement to find out the interdependencies among the customers and suppliers.

Answers

Answer:

Supply chain disruption is a global issue and there is a requirement to find out the interdependencies among the customers and suppliers.

Explanation:

The context suggests we are discussing some type of challenge involving the relationships between customers, suppliers and a larger supply chain. A "global issue" involving "interdependencies among the customers and suppliers" points to potential supply chain disruption or issues in a supply network.

Since there is a "requirement to find out the interdependencies" between customers and suppliers, this suggests we need to identify and analyze how they are connected and dependent upon each other in order to resolve the broader "global issue." This information could then be used to make changes, build resilience or manage risks in the supply chain.

Hope this helps!

Answer:

Internet is global issues

What year was html released?

Answers

2007 because I said so

Answer:

1999

Explanation:

Sometimes young adults may want to experience physical intimacy, and their lack of knowledge may result in .

Answers

Answer:

Unexpected outcome: Sometimes young adults may want to experience physical intimacy, and their lack of knowledge may result in pregnancy. ... Parents may experience emotions of frustration and anger when they have to deal with a cranky or troublesome child.

Which type of game is least likely to need a structured narrative?


a first-person shooter, ,

an adventure game ,

a role-playing game ,

a sports game







Question 4

Answers

Answer:

an adventure game

Explanation:

It is this because people explore more than rather have certain dialouge or storylines like perspective games. so in that case i hope this answer helps!!!

So this one is puzzling me and my boss asked if I could look into it. She received an email from Ulta beauty about a big sale they were having that only lasted a few hours. She went back later in the day and pulled up the exact same email and the text/picture inside the body of the email had magically changed saying "this event has ended." So how is that possible? How can the text change in an email already sent?? Help me understand!

Answers

Normally we cannot edit email that already sent but , we can edit mail through:

Click Sent Items in the Navigation Pane of Mail.

How can we edit email?e-mail, or electronic mail, refers to messages sent and received by digital computers via a network. An e-mail system allows computer users on a network to communicate with one another by sending text, graphics, sounds, and animated images.Open the message you want to replace and recall. Click Other Actions in the Actions group on the Message tab, and then click Recall This Message. Delete unread copies and replace with a new message or Delete unread copies and replace with a new message are the options.

To learn more about email refer to :

https://brainly.com/question/28073823

#SPJ1

Write a function named dice_eval that accepts two parameters representing numeric dice values and returns a string describing the results. If the sum of the dice is 7 or 11, return 'Winner!'. If the sum of the dice is 2, 3, or 12, return 'Crxps!'. For all other values, return a string of the form 'Point is xx', where xx is the sum.

Answers

Following are the "dice_eval" method code into python language.

Program Explanation:

Defining a method "dice_eval" that takes two variables "d1,d2" in its parametes.Inside the method, multiple conditional statements were used that adds the parameter values and calculates its value which can be defined as follows:In the if block, it adds the parameters and uses or gate that check its value that is equal to 7 or 11. so, it will return a string message that is 'Winner!'.   In the elif block, it adds the parameters and uses or gate that check its value that is equal to 2 or 3 or 12. so, it will return a string message that is ' C r aps ! '. In the else block, it uses a return keyword that adds parameter value and prints a string value.Outside the method "d1,d2" is declared that inputs the value from the user-end, and passes the value into the method, and prints its value.

Program:

def dice_eval(d1, d2):#defining a method dice_eval that takes two parameters

if (d1+d2)==7 or (d1+d2)==11:#defining if block that adds parameter value and use or operator to check its value

return 'Winner!'#return string value

elif (d1+d2)==2 or (d1+d2)==3 or (d1+d2)==12:#defining elif block that adds parameter value and use or operator to check its value

return 'C r aps!'#return string value

else:#defining else block

return 'Point is '+str(d1+d2)#return string value with adding parameter

d1=int(input())#defining d1 that input value

d2=int(input())#defining d2 that input value

print(dice_eval(d1,d2))#calling method and print its return value

Output:

Please find the attached file

Please find the complete code in the attached file.

Learn more:

brainly.com/question/15011927

Write a function named dice_eval that accepts two parameters representing numeric dice values and returns
Write a function named dice_eval that accepts two parameters representing numeric dice values and returns

Use a while loop to output the even number from 100 to 147? This is python

Answers

Answer:

def main():

 i = 100

 while(i < 148):

   print(i)

   i += 2

main()

Explanation:

Assume a file containing a series of integers is named numbers.txt and exists on the computer’s disk. Write a program that reads all of the numbers stored in the file, calculates their total and displays it.


Very Important: The file could have any number of numbers, so you need to use a loop to process the data in the file

Answers

#include <iostream>

#include <fstream>

using namespace std;

int main(){

   int x, sum=0;

ifstream f("numbers.txt");

while(!f.eof()){

       f >> x;

       sum +=x;

}

cout << "Sum : " << sum;

}

This is a C++ program.

Next time be more precise on the programming language you want

PLEASE HELP ME ANSWER THIS QUESTION. I REALLY REALLY NEED IT.
. According to IEEE, what is software engineering? (A) The study of
approaches (B) The development of software product using scientific
principles, methods, and procedures (C) The application of engineering
to software (D) All of the above

Answers

IEEE (Institute of Electrical and Electronics Engineers) describes software engineering as:

(D) All of the above.

Software engineering encompasses the study of approaches, and the development of software products using scientific principles, methods, and procedures. It also encompasses the application of engineering principles to software. It is a multidisciplinary field that combines technical knowledge, problem-solving skills, and systematic processes to design, develop, and maintain software systems efficiently and effectively.

Write a function named replaceSubstring. The function should accept three string object arguments entered by the user. We want to look at the first string, and every time we say the second string, we want to replace it with the third. For example, suppose the three arguments have the following values: 1: "the dog jumped over the fence" 2: "the" 3: "that" With these three arguments, the function would return a string object with the value "that dog jumped over that fence". Demonstrate the function in a complete program. That means you have to write the main that uses this.

Answers

Answer:

public class Main{

public static void main(String[] args) {

 System.out.println(replaceSubstring("the dog jumped over the fence", "the", "that"));

}

public static String replaceSubstring(String s1, String s2, String s3){

    return s1.replace(s2, s3);

}

}

Explanation:

*The code is in Java.

Create function called replaceSubstring that takes three parameters s1, s2, and s3

Use the replace function to replace the s2 with s3 in s1, then return the new string

In the main:

Call the replaceSubstring function with the given strings and print the result

Can an SQL function return multiple values? No answer needed, take the points.

Answers

Answer:

Yes

Explanation:

Thx

PLS I NEED HELP FOR 35 PTS!!!

What is the main purpose of routers?

Routers connect computers to nearby wireless devices, such as headphones and speakers.

Routers connect computers and choose the path that information takes from one computer to another.

Routers increase the speed of a network’s internet connection by decreasing the latency.

Routers translate a website’s name into an IP address.

Answers

Answer:

Routers increase the speed of a network’s internet connection by decreasing the latency.

Explanation:

6
6 points
is a vector based using rigs to move body parts instead of drawing over and over.
2D animation
motion graphics
computer animation (3D)
stop motion

Answers

The phrase "vector animation" describes animation in which the art or motion is controlled by vectors rather than by pixels.

Explain about the vector animation?

Scalable vector graphics are the best option for web pages since they provide at least 16.7 million colors, while GIF only supports 256 in terms of raster vs. vector animation (animated illustrations, logos, icons, etc.).

Editors' Choice: Adobe Animate is the best animation programme overall. Photoshop Animate Image courtesy of Adobe Adobe Animate is the greatest animation program to choose when looking for vector-based software that is easy for beginners to use while still being useful for cross-platform projects.

When animating its features and shorts, Pixar Animation Studios uses proprietary software called Presto, which was created and is utilized exclusively within the company. Only Pixar uses Presto, which isn't for sale.

To learn more about vector animation refer to:

https://brainly.com/question/28251771

#SPJ9

Which of the following are advantages of automatic updates?

Which of the following are advantages of automatic updates?

Answers

Answer:

a,b,d  

Explanation:

a.they protect against viruses

b.they protect against hackers

d.they keep your computer running at peak performence

Answer:

They protect against viruses

Explanation:

If you want to use evidence found on computers, networks, and other devices to help solve crimes, then which of the following careers is a match for you?Security specialistData scientistWeb analyticsDigital forensics

Answers

In the technological field of computer forensics, evidence from a computer device is found and stored using investigative procedures.

Computer forensics is frequently used to find information that could be used in court. Moreover, areas outside of investigations are covered by computer forensics. Professionals in this sector may occasionally be asked to recover lost data from damaged discs, wrecked servers, or reformatted operating systems.

When and how is computer forensics employed?

Investigation and data recovery are the two main uses of computer forensics. Here is a quick explanation of how each is handled by experts in the field. Digital forensics can be a crucial component of contemporary investigations.

Learn more about forensics here:

https://brainly.com/question/14403044

#SPJ4

Johnathan was assigned to complete a project with three other people. What benefit will he get from working with the team?

Answers

The benefit will he get from working with the team is behavioural Contrast.

What is Behavioural Contrast?

Behavioural Contrast can be defined as a contrast in behaviour in different settings with the same situation. When there is multiple schedule of punishment and reinforcement there tends to be an occurrence of behavioural contrast.

In the given case, the multiple schedules are the school and home. In both the schedules, there is a difference between the behaviour of Johnathan because of differences in punishment and reinforcement.

Therefore, The benefit will he get from working with the team is behavioural Contrast.

Learn more about reinforcement on:

https://brainly.com/question/5162646

#SPJ1

which type of computer are todays most widely used personal computers?

Answers

Answer:

Windows 10. :)

Explanation:

Answer:

Microsoft Windows is the most commonly installed OS (windows 10)

What are the letters associated with home rows keys?​

Answers

Answer:

The letters are 'a s d f g h j k l ;' .These are the letters associated with the home keys.

Answer:

In order to maximize the range your two hands can reach on a keyboard, they should be positioned in the middle of the keyboard.Your left fingers should be resting on the letters A,S,D and F.And your right fingers should be resting on the keys J,K,Land semicolon.This set of eight keys is known as home row

memememememmemememememememmmeememememe

memememememmemememememememmmeememememe
memememememmemememememememmmeememememe
memememememmemememememememmmeememememe

Answers

l o l l o l l o l ha ha ha ha ha l o l

what is the abbreviation of IP address​

Answers

Answer: Internet Protocol Address

Explanation: IP Address is the abbreviation of Internet Protocol Address

Hope this helps

--Wavey

the meaning of the abbreviation of IP address is: Internet Protocol address(IP address)

sorry if that isn't what you meant, but hope this helps


Order the steps to access the Spell Checker pane.
Click on the Review tab.
Click on the Spelling button.
Navigate to the Proofing group.

Answers

The Order  of the steps to access the Spell Checker pane is:

Click on the Review tab.

Navigate to the Proofing group.

Click on the Spelling button.

What is the order?

In Microsoft Word and additional identical program, the Review tab is a ticket situated favorable of the screen, occasionally close tabs to a degree Home, Insert, and Page Layout.

In Clicking on the Review label will take you to the portion of the program that holds forms for inspecting and rewriting your document.

Learn more about Spell Checker pane from

https://brainly.com/question/14307537

#SPJ1

What is the easiest way to create a resume in Word with predefined content that can be replaced with your information?

Answers

The easiest way to create a resume in Word with predefined content that can be replaced with your information is to use a resume template.

What is resume?

A resume, often known as a curriculum vitae (CV) in English outside of North America, is a document written and utilised by an individual to present their background, abilities, and accomplishments. Resumes can be used for a variety of reasons, but they are most commonly utilised to find new job. A CV often includes a "summary" of relevant employment experience and education. The resume is frequently one of the first items a potential employer sees about the job seeker, along with a cover letter and sometimes an application for employment, and is typically used to screen applicants, often followed by an interview.

To learn more about resume

https://brainly.com/question/14178136

#SPJ13



How do a write 19/19 as a whole number

Answers

As a whole number it is 1.0.

Answer:

1.0

Explanation:

You divide 19 by 19 and get 1

What is a trojan horse in computer science?

Answers

Answer:A Trojan Horse Virus is a type of malware that downloads onto a computer disguised as a legitimate program

Explanation:

If anybody goes through K through 12 can you please help me by putting the code for the 2.3.4 word definitions for coding​

If anybody goes through K through 12 can you please help me by putting the code for the 2.3.4 word definitions

Answers

Answer: if it helps there is a tutorial on YT that gives the answers if you just search  2.3.4 word definitions

Explanation:

what is your opinion on the statement "A woman trapped in a mans body.​

Answers

Answer:

i think it's like the man is back hugging or hugging the woman? or the man is forcefully hugging her while she is trying to escape him.

The CPU is basically the same as a disk drive?

Answers

Answer:

No, other than working independently, they are not the same.

Explanation:

A computer's CPU is the fastest part of the system. Its job is to process data and is usually left waiting on the rest of the computer to feed it information to work with. Hard drives are one of the sources that the processor gets data from, but both parts work independently.

What feature would you use to enhance a text box? Shape Styles, Adjust slide layout, Insert new format, or Add-ons?​

Answers

Answer:

I believe add-ons are used for that

Explanation:

In Linux, what signal is sent when you enter the kill pid command

Answers

Answer:

The default signal is SIGTERM (signal 15).

Explanation:

When you enter the kill pid command in Linux, the SIGTERM (signal 15) signal is sent by default. SIGTERM is the default termination signal that is sent to a process when the kill command is used. It is used to gracefully terminate a process and allows the process to perform any necessary cleanup operations before it is terminated.

Other Questions
62.1 divided by 10.2 Which of the following allows developers to start a new Android project with a set of default project directories and files if anyone can help me with this civics homework ill give 28 points prove that for a 1:1 binary ionic crystal the minimum cation-to-anion radius ratio for a coordination number of 8 is 0.732 (1) How are PERCENTS and DECIMALS related?(2) What is the difference between solving a problem involving TIP and pro involving a DISCOUNT? Convert 1.65 moles of nitrogen gas at STP to liters.What is the coefficient of the scientific notation answer ? What is the exponent of the scientific notation answer ? How many significant figures are there in the answer ? What is the right most significant figure in the answer ? Exercise 3 Draw three lines under each lowercase letter that should be capitalized. For each italicized word write in the blank com. (common noun) or prop. (proper noun).tutankhamen reigned as king of egypt from about 1347 B.C. to 1339 B.C. A new investment offers TimeTek future cash flows of $R in four years and $T in nine years. Assuming an interest rate of 0% throughout the entire time, TimeTek will pay up to $50,000 today to receive these future cash flows. If the interest rate becomes negative, what will TimeTek be willing to pay for these same cash flows $R and $T ? More than $50,000 $50,000 Less than $50,000 Not enough information to determine a remembrance of what muhammad said or did is called A machine , costing $ 30,000 to buy and $ 2500 per year to operate will save mainly labor expenses in packaging over seven years . The salvage value at the end of seven years is $ 4,500 . At 12 % rate of return , find the minimum required annual savings in labor from this machine ? If the annual operating cost increases 10 % , say from $ 2,500 to $ 2,750 , will the minimum annual savings increase or decrease ? The interval between two notes (one higher than the other) of the same name that have a similar sound because the upper has exactly double the sound vibrations per second of the lower is called a/an How can I solve the test statistic on a ti-84 plus calculator?Homework: Section 11.1 Homework Question 2, 11.1.9-T Part 2 of 4 HW Score: 9.09%, 1 of 11 points O Points: 0 of 1 Save Conduct a test at the x = 0.01 level of significance by determining (a) the null Why is creativity important in science? help me please pleasee Please answer correctly and no links Fresh veggies are the best kind to consume true or false Which state of team dynamics requires the leader to establish roles, expectations, and guidelines for the team? StormingBuildingFormingPerforming Free market economy is?CommunistSocialistCapitalist By the unique line postulate you can draw only one segment using the definition of what should be included in an orientation session for new lifeguards at a facility?