What is the difference between CISC and RISC?

RISC has a reduced instruction set where each instruction can be executed in a single clock cycle. This means that programs often are longer to the developer but are more easily executable on lower powered devices such as mobile phones.CISC on the other hand has instructions that can take multiple clock cycles, and is typical of desktop processors. The programs are more simple for the developer.

JB

Related Computing A Level answers

All answers ▸

Convert the base-10 number 74 into an 8-bit binary number


What are higher order functions in functional programming? How does the 'map' function work and why is it a higher order function?


Some problems are intractable. What does it mean for a problem to be described as intractable?


A common construct found in many algorithms is a loop. Using pseudocode, write a pre-condition loop to output all of the even numbers between 99 and 201.