Chapter 2: Data Manipulation Flashcards
What’s the idea of storing a computer’s program in it’s main memory called?
Stored Program Concept
What’s a machine instruction?
A machine instruction is an instruction encoded as a bit pattern recognized by the CPU.
What’s a machine language?
A machine language is a set of all machine instructions recognized by the CPU.
What is RISC?
RISC stands for reduced instruction set computer. Architectures have few, simple, efficient and fast instructions, for example ARM based processors in smartphones.
What is CISC?
CISC stands for complex instruction set computer. Architectures have many, convenient and powerful instructions, for example Intel-processors in laptops.
What are the three machine instruction categories?
Data Transfer unit = instructions move data from one location to another.
Arithmetic/logic unit = instructions tell the control unit to request an activity within the arithmetic/logic unit.
Control unit = instructions direct the computation of the program rather than the manipulation of data.