what is main function of processing unit?

Answers

Answer 1

Answer:

to control the operation of all part of the computer.

hope it helps.

Answer 2

Answer:

to control the operations of the computer

Explanation:

hope it's help you have a great day keep smiling be happy stay safe ☺


Related Questions

Denise found a volume of documents in the trash bin that contained individuals, names, social security numbers and years of birth. After additional inspection, she realized it was an extra report from one of their file systems that had been discarded. What should Denise do?

Answers

Answer:

All of the above

Explanation:

The report is a piece of critical information in the company's file system that should be saved and secure from adversaries. All the options should be implemented to prevent and manage data leakage.

Which of the following statements about content-based filtering is TRUE?

Answers

Answer:

with content-basedfiltering users receive recommendations for items that are similar in type to ones they already like

so i am taking to edhesive computer science course in my school, and i am confused on 1.6 code practice,
here are the intructions, it is also for the python coding language

Write a program that uses two input statements to get two words as input. Then, print the words on one line separated by a space. Your program's output should only include the two words and a space between them.

Hint: To print both words on one line, remember that you can concatenate (add) two phrases by using the + symbol. Don't forget that you'll need to add a space between the words as well.

Sample Run

Enter a word: Good
Enter a word: morning
Good morning

Answers

I included my code in the picture below. Best of luck.

Which of the following is an example of a logic error in programming?

A: Not using quotation marks and parentheses to print a string literal

B: Printing an inaccurate statement, like print("Dogs have wings.")

C: Trying to perform an impossible task, like 5 / 0

D:Using camelcase when a variable name contains two or more words

Answers

Answer:

It's C

Explanation:

what is the main function of processing unit​

Answers

Answer:

CPU is considered as the brain of the computer. CPU performs all types of data processing operations. It stores data, intermediate results, and instructions (program). It controls the operation of all parts of the computer.

Explanation:

Answer:

CPU

Explanation:

CPU is considered as the brain of the computer. CPU performs all types of data processing operations. It stores data, intermediate results, and instructions (program). It controls the operation of all parts of the computer.

why does computer uses 0s and 1s to procress data​

Answers

Answer:

Computers use binary - the digits 0 and 1 - to store data. The circuits in a computer's processor are made up of billions of transistors . A transistor is a tiny switch that is activated by the electronic signals it receives. The digits 1 and 0 used in binary reflect the on and off states of a transistor.

Computers don't understand words or numbers the way humans do. ... To make sense of complicated data, your computer has to encode it in binary. Binary is a base 2 number system. Base 2 means there are only two digits—1 and 0—which correspond to the on and off states your computer can understand.
uwu

A type of storage which holds data on a permanent basis for later use



Help please

Answers

Answer:

Permanent storage, also called persistent storage, is any computer data storage device that retains its data when the device is unpowered. A common example of permanent storage is the computer's hard drive or SSD.

Explanation:

Complete the code.
import csv
inFile = open ("one.txt","r")
outFile = open("another.txt", "w")
myReader = csv.reader(inFile)
for item in myReader:
aWord = item[0]
aNumber = ___ (item[1]) + 0.4
line = aWord + "," + str(aNumber) + '\n'
outFile.write(line)

Answers

Answer:

The answer is float.

Explanation:

what key do I use to start my presentation

Answers

Answer:

The answer to this question is given below in this explanation section.

Explanation:

Knowing how o start a presentation is crucial if you fail to capture the audience attention right of the bat your entire presentation will flop.Few listeners will stick with you to the end and retain what you have told.

That is mildly unpleasant when you are doing an in house presentation in front of your colleagues.But can become utterly embrassing when you are presenting in front of larger audience presentation to prospective customers.

Let you have most of your presentation slides and polished up you dont check and quick and effective power point presentation design tips.Many ideas are broken into bits sized statements for your slides and complemented with visuals.The best way is to appeal and invoke certain emotions with your audience curiosity,surprise fear or good old amusements.

Suppose a family has had a house fire in which
they lost many photos, and they are worried about
losing more if they have another. Which of the
following is a reason this family may want to
digitize their photos? Choose all that apply.
to make it easier to e-mail photos to friends
to maximize file space on their hard drive
to minimize risk of losing photos by acking
them up in virtual space
to save space in their home
DONE

Answers

I would say all the reasons below are good reasons.

Answer:A, C, D,

Explanation: Did it

What is problem scoping brief explanation in Artificial intelligence

Answers

Answer:

prime minister of england

How do you set up nordvpn with spectrum?

Answers


Log into the settings of your Spectrum router.
Refer to the manual for complete instructions.
Go to advanced settings.
Choose advanced setup then click VPN service.
Enable the VPN service by checking the box.
Hit apply.
Specify the VP service settings on the page.
Download and Install the VPN

Use the code above to write a program that when run, draws 1000 points
at random locations on a frame as it runs. For an added challenge, have
the 1000 points be in different, random colors.
Can someone actually write code for this pleaseee (IN PYTHON OR EDHESIVE)

Answers

Answer: This is what worked for me

Explanation:

The program is an illustration of frames in Python:

Frames are part of what makes up a graphic user interface program.

The missing code segment in Python, where comments are used to explain each line is as follows:

#This defines the draw handler method

def draw_handler(canvas):

   #This imports the random module  

   import random

   #This generates a random number between 0 and 1000

   randNum=random.randint(0,1000)

   #This following iteration is repeated

   for r in range (600,600):

        #This sets the rgb color code to the random number

        r = randNum; g = randNum; b = randNum

        #This gets the color code

        randRGBcolor = "RGB(" + str(r) + "," + str(b) + ")"

        #This draws the points

        canvas.draw_point([x, x],(randRGBcolor))

At the end of the program, the 1000 points are displayed on the screen

Read more about similar programs at:

https://brainly.com/question/14068778

Who is obsessed with Stranger Things, and waiting for the new season?!?!

Answers

Answer:

Me

Explanation:

Answer:

ME I CANNOT WAIT I'VE BEEN WAITING EVER SINCE ME AND MY STRANGER THINGS OBSESSED REALLY CLOSE FRIEND AND I FINISHED SEASON 3 THE DAY IT CAME OUT

Explanation:

What is the answer I will give brainliest

Answers

The answer is 24kQr3

4. If d is a double variable with a value of 7.5, which of the following statements results in a (1 point) value of 7 being assigned to x?
int x = (int)d;
int x = d;
int x = int(d);
double x = d;​

Answers

Answer:

int x = (int)d

Explanation:

(int) means the largest integer value smaller than <value>.

which is 7.

Only the first choice has the correct syntax.

The second choice sets an int as a double, which does not work.

The third one shows int as a function, d as a parameter, which is not allowed, as int is a keyword in java

For the last choice, you are setting x to 7.5 not 7.

So int x = (int)d is correct.

what is the term for the era created by the digital revolution?

Answers

Answer:

The Digital Revolution also marks the beginning of the Information Era. The Digital Revolution is sometimes also called the Third Industrial Revolution.

Explanation:

Hope this Helps.

Invitations cost $6 for a pack of 5. Lori gives the cashier $50 to buy invitations and gets $8 in change. How many packs of invitations does Lori buy?

Answers

Answer: 35

Explanation:

Since Lori gives the cashier $50 to buy invitations and gets $8 in change, thus means that the amount spent on invitations = $50 - $8 = $42

Since he spent $42 and the invitations cost $6 for a pack of 5, the packs of invitations that he bought would be:

= ($42/$6) × 5

= 7 × 5

= 35 packs of invitation

please help i will give brainliest if right

Which elements are part of the Outlook interface? Check all that apply.

Ribbon
Quick Access Toolbar
Comments Box
Reading Pane
Formula Bar
Command Groups

Answers

Answer:

Ribbon, Quick Access Toolbar, Reading Pane, Command Groups

Explanation:

I did it on edge 2021

The elements which are part of the Outlook interface include ribbon, quick access toolbar, reading pane, and command groups. Therefore, the correct options are A, B, D, and F.

What is Outlook interface?

Outlook Main Interface is the folder pane. Outlook interface usually displays on the left hand side of the screen, and it helps in the Outlook users to switch to different folders and different views in the operating system such as mails, calendar, people, task, notes and all folders.

Basic features of Outlook interface include email service, email search, flagging, and color coding, along with the preview pane options. The calendar function enables scheduling, viewing, and communicating about the different appointments and meetings.

The main elements of the Outlook window include the ribbon, Quick Access Toolbar, Reading Pane, Command Groups.

Therefore, the correct options are A, B, D, and F.

Learn more about Outlook interface here:

https://brainly.com/question/19018627

#SPJ2

Someone plz answer my question!!
There are infinite black and white dots on a plane. What is the distance between one black dot and one white dot?​ If you get it right I will give you the crown!!!!!​

Answers

Answer:

infinite I know I got it right so might as well give me brainliest :)

Explanation:

who was the first guy who find video games​

Answers

Answer:

Ralph Baer

Explanation:

shows the prototype of the first games console which was invented by him during a press conference on the Games Convention Online in Leipzig

Answer: Inventor Ralph Baer

Explanation:

German-American game developer Ralph Baer shows the prototype of the first games console which was invented by him during a press conference on the Games Convention Online in Leipzig, Germany in 2009. Baer died on Saturday. He was 92.

Decision support systems help managers use structured data to identify problems and find solutions to business-related problems. The financial management system is an example of this system.

Answers

Answer:

sorry about this

Explanation:

may someone help me with the this question pls , The governor of a state wants to inform the people about a change in the tax policy. Which people should he definitely invite to convey the message?
A.
bank and tax officers
B.
news reporters
C.
business heads
D.
radio DJs
E.
lawyers

Answers

Answer:

Option B: News reporters is the correct answer.

Explanation:

First of all we have to observe the reach of all options available in the question. We know that the largest reach in the country or province or state is of media and journalists of that particular region. So the governor should invite the news reporters to convey the message.

Hence,

Option B: News reporters is the correct answer.

Which of the following views contains the Notes Pane?
O Normal View and Reading View
O Normal View and Notes Page View
O Reading View and Slide Sorter
0 Slide Sorter and Notes Pane View

Answers

Answer: Normal view and reading view

Explanation:

What is the difference between an appointment and a meeting?
O An appointment does not require coworkers, but a meeting includes coworkers.
O An appointment is for personal obligations, but a meeting is work related.
O An appointment does not have a location, but a meeting has a specific site.
O An appointment is for tasks to accomplish, buta meeting is a time slot on the calendar.

Answers

Answer:

The correct option is;

An appointment does not require coworkers, but a meeting includes coworkers

Explanation:

The correct option is an appointment does not require coworkers, but a meeting includes coworkers

A meeting differs from an appointment mainly because an appointment is an schedule that has an effect only on a personal calendar while a meeting is a schedule that can involve the attendance of one or more other people who will be invited and indicate readiness to attend. Therefore, a meeting can affect the calendars of more than one person working on a task.

In an organization, an internal meeting will require coworkers, while an appointment does not require the attendance of coworkers

Answer:

the one above is right

Explanation:

or for ads A

how many string object are in 128,55 in python

Answers

Answer:

Explanation:

In the following examples, input and output are distinguished by the presence or absence of prompts (>>> and …): to repeat the example, you must type everything after the prompt, when the prompt appears; lines that do not begin with a prompt are output from the interpreter. Note that a secondary prompt on a line by itself in an example means you must type a blank line; this is used to end a multi-line command.

Many of the examples in this manual, even those entered at the interactive prompt, include comments. Comments in Python start with the hash character, #, and extend to the end of the physical line. A comment may appear at the start of a line or following whitespace or code, but not within a string literal. A hash character within a string literal is just a hash character. Since comments are to clarify code and are not interpreted by Python, they may be omitted when typing in examples.

There are 4 strings within the best_list. Strings can be easily identified becuase they're surrounded with quotes. For example, "hello" is a string because it has the quotes around it.

Tonya wants to group some messages in his inbox. What are some of the ways that she can do this? Check all that apply. assign messages a color-coded category. Create a rule to move messages to a new folder. Create a new folder, select/ highlight messages, right-click, and choose Move to folder. Highlight messages, right-click, and choose Group Messages.

Answers

Answer: Create a new folder, select/highlight messages, right-click, and choose group messages.

Explanation: answer above!

Tonya wants to group some messages in his inbox. Some ways that she can do this are:

Assign messages to a color-coded category. Create a rule to move messages to a new folder.To create a new folder, select/highlight messages, right-click, and choose group messages.

What is organizing massages?

A list of folders can be found in the left-side menu of Messages. Click the New Folder button under My Folders. A new window with the title "Create New Folder" will open. In the text box, type the name you want for the new folder.

Touch Conversation categories > Add category, then tap Done to create a category. To view the newly added tab or label, return to the app's home screen. Tap Conversation categories to rename a category. Rename can be selected in the bottom men after selecting the desired category.

Therefore, the correct options are A, B, and C.

To learn more about organizing massages, refer to the link:

https://brainly.com/question/28212253

#SPJ2

7.2.7: Part 1, Replace a Letter

"Write a function named replace_at_index that takes a string and an integer. The function should return a new string that is the same as the old string, EXCEPT with a dash in place of whatever character was at the index indicated by the integer.

Call your function on the word eggplant and the index 3, like this:

s = replace_at_index("eggplant", 3)
You should then print the value of s, which should display:

egg-lant"

Answers

Answer:

def replace_at_index(string, index):

   return string[0:index]+"-"+string[index+1:]

   

replaced_word = replace_at_index("house", 0)

print(replaced_word)

Explanation:

simpler version

The Function that is used to name replace_at_index that takes a string and an integer is as follows:

def replace_at_index(string, index):

            return string[0:index]+"-"+string[index+1:]

       replaced_word = replace_at_index("house", 0)

           print(replaced_word).

What is the significance of the programming function?

The significance of the programming function is determined by the fact that it sanctions programmers in order to breach or disintegrate a problem into smaller chunks. Each of these smaller chunks usually performs a particular task.

Functions are specifically utilized by the user in order to execute certain actions, and they are important for reusing code. They usually define the code once and use it multiple times with the same efficacy and accuracy.  These collections of codes develop a function.

Therefore, the function that is used to name replace_at_index that takes a string and an integer is well described above.

To learn more about Computer's functions, refer to the link:

https://brainly.com/question/179886

#SPJ3

Please helpppppppppppppppppp please I’m stuck!

Answers

do u know thw muffin man

Which amendment applies to the following scenario? “Brian attended church with his two daughters and wife on Sunday." A First B Second C Fourth

Answers

Answer: First Amendment

Explanation:

The First Amendment gives individuals the freedom of speech and the right to proactive any religion that they want. It also allows the people have a peaceful protest.

The swcud amendment gives people the right to keep arms. The Fourth hinders individuals from being searched without a warrant.

Therefore, the answer is First Amendment.

Other Questions
Please help with this question!!!!! If u d!e what anime qoute would u want on ur grave? The best gets brainliest :D hiiii im back with another most likely easy questionnnnnnnnnnnnnnnnnnnnnn 13. It takes Seymore, a slimy slug, 20 minutes to travel from his favorite bush to the local trash can (a distance of 30 meters), how far can he travel in 1 hour (60 minutes)? ano ang mga likas na yaman na maaring binigay ni mariang sinikuan sa mga tao? Read and choose the correct word to complete the sentenceTengo quince aos. Mitiene diecisis aos. Es inteligente y alta.A padreB madreC hermanaD hijo What is the ratio of green stars to red stars? Why?3. At what point on the curve x3 y2 + x2 = 0 is the tangent line vertical?(A) (0,0) only(B)(-1,0) only(C) (1, sqrt2) only(-1,0) and (0,0)(E)The tangent line is never vertical. a 50 kg box is pushed to the left using 500 N, the frictional force on the box is 100 N what is the acceleration on the box? What are some of the things that Vincent had to do to enhance his genetic"imperfections?" so that he looked like the real Jerome? GATTACA The NORTHWEST ORDINANCEwas important to the development andgrowth of the United States because... Given f(x) = -x + 1, find f(0). 520% of 100 Show Your Work Find the value of x in the image 15 points Which statements are true about the ordered pair (7, 19) and the system of equations?{2xy=5 x+3y=22Select each correct answer.The ordered pair (7, 19) is a solution to the first equation because it makes the first equation true.The ordered pair (7, 19) is a solution to the second equation because it makes the second equation true.The ordered pair (7, 19) is not a solution to the system because it makes at least one of the equations false.The ordered pair (7, 19) is a solution to the system because it makes both equations true. Each bag of rice costs $60, and you have $180 to spend onrice. Write an inequality for the possible number of bags of riceyou could buy, then find the maximum number of bags you canbuy.SER PLEASE HELP THIS IS DUR SOON Give an example of how a capitalist idea has been adopted in a socialist economy? is 6.7234724 rational or irrational. Nancy is replacing the mat on her trampoline. The circular mat has a diameter of 18 feet. what is the area of the trampoline mat to the nearest square foot?Someone please help me