Is this a question or answer? Either re-post correctly or ignore this.
Both desktop and laptop computers employ CISC (complex instruction set computer) CPUs. Small programs are on CISC machines. It requires a lot of time to execute because it contains a great deal of compound instructions.
<h3>What do you mean by CISC?</h3>
Both desktop and laptop computers employ CISC (complex instruction set computer) CPUs. More complex instructions can be processed by this kind of CPU. For instance, a single instruction might load two values, add them, and then store the outcome back in memory.
A computer that, in contrast to a computer with a limited instruction set, allows individual instructions to perform numerous processes and need a large number of cycles to complete (RISC).
Small programs are on CISC machines. It requires a lot of time to execute because it contains a great deal of compound instructions. In this case, a single set of instructions is safeguarded in stages; each instruction set contains more than 300 distinct instructions. On average, instructions take two to ten machine cycles to complete.
To learn more about CISC refer to:
brainly.com/question/13266932
#SPJ4
Answer: Yes, when we type something in, the computer will show you lots of things that a human can't think of. What i'm saying is, a computer thinks faster than a human.
Explanation:
Answer:
You will need to implement a for loop ( I am assuming this is java)
Explanation:
int count20s = 0;
for(int x =0; x< customerAges.length;x++){
if(20 <= customerAges[x] && customerAges[x] <= 29){
count20s++;
}