Choose the term that describes each step of the cycle.

------- : gets next instruction

---------- : interprets instruction

----------- : carries out instruction

------------ : saves result of instruction

Answers

Answer 1

Answer:

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

Explanation:

This question is about to tell the best and suitable terms for the given descriptions in the question.

As we know that a computer program is based on sets of instructions. The CPU carries out the processing using the fetch decode and execute cycle.

It is responsible for implementing a sequence of instructions called a computer program that takes input, processes them, and outputs the result based on processing.

A CPU mainly has three components such as control unit, Arithmetic logic unit,  and register.

The control unit controls all parts of the computer system. It manages the four basic operations of the Fetch Execute Cycle such as Fetch, Decode, Executes, and Storage.

So the correct terms of this question are:

Fetch: Gets next instruction

Decode: interprets the instruction

Execute: Carries out instruction.

Store: Save results of instruction.

Answer 2

Answer:

A). Fetch : gets next instruction

B). Decode : interprets instruction

C). Execute : carries out instruction

D). Store : saves result of instruction

Explanation:

I just did the Test on EDGE2020 and it's 200% correct!  

Also, heart and rate if you found this answer helpful!! :) (P.S It makes me feel good to know I helped someone today!!)  :)

Choose The Term That Describes Each Step Of The Cycle.------- : Gets Next Instruction ---------- : Interprets

Related Questions

Complete the sentence.
A _______ error might appear when you are attempting to view a secure web page

Answers

Answer:

An internal server error

On the order form worksheet, unlock cells B5 through K5? On Microsoft excel

Answers

Answer:

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

Explanation:

The following steps can be used to unlock the cells of the Microsoft Excel worksheet.

Select the cells B5 through K5, that you want to unlock. Then choose the “Home” tab from the tab ribbon. In the “Cells” area, then select “Format” > “Format Cells“. Select the “Protection” tab. Uncheck the box for “Locked” to unlock the cells. Check the box to lock them. Select “OK“.

Why can't I access my micro SD card on my Lenovo ThinkPad Yoga 11e? I'm trying to export some PNG files onto my Micro SD card, so I can have the files on my phones.

Answers

maybe you need a new sd card

A Uniform Resource Locator (URL) consists of 2 (Two) Basic Parts named ___________ and _________ separated by a colon (:) and 2 (two) forward slashes. *

A)a Protocol Identifier
B)a URL
C)a Resource Name
D)a Domain Name

Answers

Answer:

Protocol identifier A & URL B

Explanation:

Formulas should follow the___
last cell used
signs
order of operations
call of operations

Answers

Answer:

Order of operations

Explanation:

What is the purpose of the Print Area feature?

printing graphs and charts for the document
printing how many copies of a document should print
selecting specific cells and ranges to print
selecting color for the Print Area’s border

Answers

Explanation:

printing how many copies of a document should print

Answer:

C. selecting specific cells and ranges to print

Which of the following is NOT an example of application software?
Internet Explorer web browser
Photoshop image editing program
Microsoft PowerPoint presentation software
Windows operating system

Answers

Application software is a type of software that also carries out another personal, educational, and business function, and its further discussion can be defined as follows:

Each application is designed to support the user in a particular process that could be associated with productivity, creativity, and communication.In this question except for Windows all "web browser,  Photoshop, and presentation software" is a type of Application software, that is run on OS.  Windows is a software accumulation known as just an OS that controls a PC (personal computer).

Therefore, the final answer is "Windows operating system ".

Learn more:

brainly.com/question/2949220

PLEZ ANSWER QUICK
Another name for a web page's address is _____.

ISP

web server

HTTP

URL

Answers

The answer is URL. ........

Answer:

URL is the other name for a web page's address

What will be displayed on the next line after you type the code below in IDLE and press ENTER?
>>>print(1 + 5)

Answers

Answer:

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

Explanation:

The correct answer to this question is given below:

This is a python code when you will write it into IDLE and press enter.

It will print six as a digit on the screen such as below:

>>>print(1 + 5)

6

Because, when you will give two integer parameters and a "+" operator, then the print function will add the two-parameter and print the result of the sum (5 and 1) on screen. So this code will print 6 as a result of this code on the screen.

what format can be applied to text in excel?

Answers

You can apply accounting format,date,numbers, currency, percentage or even fraction

How do information systems help organizations?

Answers

Answer:

Information systems assist in disseminating information by allowing managers and other organization leaders to store data in folders and documents that can be seamlessly shared with the appropriate employees.

Explanation:

The total mass for the substances after any
reaction change from its original.​

Answers

Answer:

If this is a T or F the answer would be TRUE

Explanation:

May I have brainliest please? :)

Answer:

No, the total mass of the substance doesn't change from it's original after any reaction

Explanation:

Due to Law of Conservation of Mass

A + B = AB

ex :- C (12) + O2 (16×2) = CO2 (44)

Question: 1
A special kind of firmware that runs programs strictly to start up the computer is called the:
motherboard
BIOS
CPU
GPU

Answers

Answer:

BIOS, it is the only type of firmware that is there.

Write code which takes inputs and creates two Rectangle objects (using the edhesive.shapes.Rectangle class) and compares them using the equals method.

JAVA!!

Answers

Answer:

System.out.println("Enter length:");

Scanner scan = new Scanner(System.in);

Double x = scan.nextDouble();

System.out.println("Enter 2 lengths:");

Double a = scan.nextDouble();

Double b = scan.nextDouble();

Rectangle rect = new Rectangle(x);

Rectangle rect2 = new Rectangle (a,b);

if (rect2.equals(rect)){

 System.out.print("Congruent Rectangles");

}

else {

 System.out.print("Different Rectangles");

}

 }

}

Explanation:

Which term means an unsecure protocol used when remotely accessing a computer?

Transmission Control Protocol (TCP)
Secure Shell (SSH)
Telnet
Internet Protocol (IP)

Answers

Answer:

9Internet Protocol (IP)

Answer:

The answer is Secure Shell (SSH)

Why can it be helpful to perform mathematical calculations using programming? Choose the best answer.

Answers

Answer:

The answer is below

Explanation:

Given that there is no available option.

Hence, It can be helpful to perform mathematical calculations using programming because

1. Programming is more viable and efficient in solving mathematical problems.

2. It is faster in getting an answer and easier to manipulate

3. It can be cheaper than human and be most time readily available

4. It can save and quickly recalls a memory

True or false, USBs are slower than RAM.

Answers

Answer:

False

Explanation:

Create a for-loop which simplifies the following code segment: penUp(); moveTo(100,120); turnTo(180); penDown(); moveForward(25); penUp(); moveTo(100,120); turnTo(180); penDown(); moveForward(25); penUp(); moveTo(100,120); turnTo(180); penDown(); moveForward(25);

Answers

Answer:

for(var i=0; i<3; i++) {

  penUp();

  moveTo(100,120);

  turnTo(180);

  penDown();

  moveForward(25);

}

Explanation:

The i variable is the loop dummy. The code block will be executed 3 times.

Fill in the blanks.
1.
Cloud offers the services to a limited and well-defined number of parties.
model.
2. Cloud computing services are based on a
3.
provides a cloud platform and allows developers to create, test, and ru
their program, website, web app, etc.
4. In
, you can keep files, folders, backups and everything important, online
5. Whenever you delete any file, it goes into
folder​

Answers

Answer:

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

Explanation:

This question is about to fill-in-the-blanks. To correct answer to each sub-question is given below:

1.

Cloud offers services to a limited and well-defined number of parties.  It is a Private model.

2.

Cloud computing services are based on software as a service (SaaS), infrastructure-as-a-service (IaaS), and platform-as-a-service (PaaS).

3.

Google provides a cloud platform and allows developers to create, test, and ru n their program, website, web app, etc

It is also noted other cloud platforms such as Amazon cloud services, Microsoft Azure cloud services provide such functionalities.

4.

In  Cloud backup storage, you can keep files, folders, backups, and everything important, online

5.

Whenever you delete any file, it goes into  Recycle Bin (if you are using windows) or trash (if you are using MAC) folder​

Hi, I couldn't delete my questions so I'm just editing them so you don't have to do it.

Answers

Ok that got h in by going go off do us do

Which of the following ideas would not be appropriate for an essay
comparing two dog breeds?
A. Terriers are feisty and smart, which can cause headaches for their
owners.
B. My dog Sally would play fetch for hours.
C. With a couple of exceptions, terriers are smaller than retrievers.
O D. Broadly speaking, retrievers are docile and friendly.

Answers

Answer:

B.

Explanation:

The following ideas would not be appropriate for an essay comparing two dog breeds:  My dog Sally would play fetch for hours. Thus option (B) is correct.

What is an essay?

An essay is defined as a brief formal piece of writing and an essay deals with a particular subject. It is generally written to try to influence the reader using selected research evidence.

In general, an academic essay has three parts:

An introduction part ,that provides the reader an idea of what they are about to learn and presents an argument in the form of a thesis statement

A body part, or middle section, that provides evidence used to prove and persuade the reader to accept the writer's particular point of view

A conclusion that summarizes the content and findings of the essay.

The following ideas would not be appropriate for an essay comparing two dog breeds:  My dog Sally would play fetch for hours. Therefore, option (B) is correct

Learn more about an essay here:

https://brainly.com/question/20426054

#SPJ5

Icon view, list view, and details view are all common views provided by which kind of program?
a web browser to view web pages
a word processor to view headings
a file browser to view folders
a file manager to view files and folders

Answers

Answer: The standard program that uses common views such as the icon view, list view, and details view would be the program known as "File Explorer" (Windows) or "Finder" (Mac). This program uses all the views to make selecting and tracking down certain files a much more painless and easier process to complete.

Explanation:

boom : )

Answer: Maybe C

Explanation:

. Write a Python command to assign the value 80.35 to a variable called 'point'.

Answers

Answer:

point=80.35

Explanation:

What is the output of the following code:
lang=
['Python','C','C++, JAVA,ASP'PHP',VB', Oracle
'MySQL)
list1 = lang(2:-2]
list2 = langl-2:-5)
list3 = langl: : 3]
print(list)
print(list)
print(list3)​

Answers

Answer:

Syntax error.

Explanation:

There are many typing mistakes in this source code.

what is media ethics. Explain two forms of maintaining media ethics with examples​

Answers

Media ethics is the best division of applied ethics dealing with the specific ethical principles and standards of media, including broadcast media, film, theatre, the arts, print media and the internet. The field covers many varied and highly controversial topics, ranging from war journalism to Benetton ad campaigns. In relation to news coverage it includes issues such as impartiality, objectivity, balance, bias, privacy, and the public interest. More generally, it also includes stereotyping, taste and decency, obscenity, freedom of speech, advertising practices such as product placement, and legal issues such as defamation.

What keyword can we use within a form to pass it as an argument to a JavaScript snippet? A. form B. onSubmit C. send D. this

Answers

Answer:

the answer is: this

Explanation:

trust me

Explain three causes of repetitive stress injuries (RSI)​

Answers

RSI can occur when you do repetitive movements. Those movements can cause your muscles and tendons to become damaged over time.

Some activities that can increase your risk for RSI are:

● stressing the same muscles through repetition

● maintaining the same posture for long periods of time

● maintaining an abnormal posture for an extended period of time, such as holding your arms over your head

● lifting heavy objects

● being in poor physical condition or not exercising enough

Where should citations be included in your research paper? Select all that apply.

In the header

At the end of every paragraph

As footnotes

In a separate Works Cited page

(EASY!!! BUT I NEED HELP PLEAASE!!!)

Answers

Answer:

in a separate works cited page

where to buy a ps5
I really want one please help meh

Answers

Answer:

You can buy one at gamestop, target, walmart, best buy and probably more stores

Answer:

Amazon, walmart, target, gamestop?

Explanation:

I'm sure a quick go ogle search will get u what u want to see, have a nice day and I hope u get what u want!

Write the count below the rests.

How do I do I do this?
Help guys

Answers

Well 1234 for the first one
Other Questions
Question: Write an Essay on the following topic:Effects of Doing Sports Regularly. Please need help in my assignment I have to write 3000 words in my assignment Given the figure below, find the measure of If correct will mark brainliest!!!!! Read this excerpt. Note the verb tense in the sentence When I look into the small rectangle, I see a face looking back at me but I dont recognize it.There is a mirror over the steel sink in my cell. It's six inches high, and scratched with the names of some guys who were here before me. When I look into the small rectangle, I see a face looking back at me but I don't recognize it. It doesn't look like me. I couldn't have changed that much in a few months.Monster, Walter Dean MyersWhich choice shows the same sentence properly written in past tense?When I look into the small rectangle, I saw a face looking back at me but I dont recognize it.When I looked into the small rectangle, I see a face looked back at me but I didnt recognize it.When I looked into the small rectangle, I saw a face looking back at me but I didnt recognize it.When I look into the small rectangle, I saw a face looked back at me but I didnt recognize it. Can someone pls help me with this (8th grade science) Ricardo is the human resources manager at Shafewn, an e-commerce site. He confirms the completion of the probationary periods of management trainees in the company only after each of them submits a report on the company's marketing strategies. In the reports, they are asked to evaluate the company's existing marketing strategies and suggest better ones. Ricardo shares the relevant and useful information from these reports with the marketing team of Shafewn. In the context of managerial roles, which of the following roles does Ricardo illustrate in this scenario?A) The leader role.B) The liaison role.C) The disseminator role.D) The monitor role. can someone please tell me 10 sentences with the verbs of the 2nd rule of oraciones sustantivas? A sealed cubical container 28.0 cm on a side contains three times Avogadro's number of molecules at a temperature of 24.0C. Find the force exerted by the gas on one of the walls of the container. Part of metacognition involves making a plan to address . PLS HELP!!!PLS FIND 13 and 15!! What is one difference between p-waves and s-waves Brainliest to right answer There are 324 stitches sewn on 3 basketballs. Which equation finds the number of stitches, n, sewn on 1 basketball? on a piece of paper graph y+2> -3x-3 Is this a function?{(-13, 4), (7, -15), (-13,9), (6, -12), (-18, 0)} The Nile River affected Nubian and Egyptian civilizations by: O A. allowing them to trade goods. B. giving them huge amounts of gold and silver. O C. preventing them from farming. O D. destroying their largest monuments. SI Conversions are essential to solving questions, what are some examples and how can we use them in the real world? If you give an example then you have to give how it is used (applied) in the real world. give two examples please Is for Sep 2, please help At Mr. Mcneely's farm there were 75 sheep in 60 cows what is the ratio of the number of cows to the number of sheep at Mr. Mcneilly farm Why are green plants special?a.they never get eatenb.they make their own foodc.they change colors at nightd.they only grow in water George es curioso.El nio es bajo.Wilma es atltica.Killer es pequeo.