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 ▸

What are the main differences between different loops when it comes to coding ?


What is the difference between an array and a record?


Given an unlimited number of light bulbs (that break at a certain height), and a building with 100 floors, how do you determine the height that the light bulb breaks?


When a stack is implemented using a 1-D array, adding a valid item can cause an execution error. Explain why an execution error can occur in this situation.