The Three Main Components of the CPU
Part of CPU Architecture — GCSE Computer Science
This key facts covers The Three Main Components of the CPU within CPU Architecture for GCSE Computer Science. Revise CPU Architecture in Systems Architecture for GCSE Computer Science with 15 exam-style questions and 12 flashcards. This is a high-frequency topic, so it is worth revising until the explanation feels precise and repeatable. It is section 4 of 7 in this topic. Use this key facts to connect the idea to the wider topic before moving on to questions and flashcards.
Topic position
Section 4 of 7
Practice
15 questions
Recall
12 flashcards
The Three Main Components of the CPU
1. Control Unit (CU) - The Manager
The Control Unit is the boss that coordinates everything. It:
- Fetches instructions from memory (RAM)
- Decodes instructions to understand what needs to be done
- Sends control signals to other components telling them what to do
- Manages timing using the system clock
Real-world analogy: Like an orchestra conductor - doesn't play any instrument but tells everyone else when and what to play.
2. ALU (Arithmetic Logic Unit) - The Calculator
The ALU does ALL the actual computing. It performs:
- Arithmetic operations: + - × ÷ (addition, subtraction, multiplication, division)
- Logic operations: AND, OR, NOT, XOR (Boolean operations)
- Comparison operations: = > < ≥ ≤ ≠ (is A bigger than B?)
- Bit shifting: Moving binary digits left or right
Real-world analogy: Like a super-fast calculator that can also make yes/no decisions.
3. Registers - The Sticky Notes
Registers are tiny, ultra-fast storage locations INSIDE the CPU chip itself:
- Much faster than RAM (nanoseconds vs milliseconds)
- Very small - only holds a few bytes each
- Temporary storage for data currently being processed
- Key registers: MAR, MDR, PC, Accumulator (covered in next topics)
Real-world analogy: Like Post-it notes on a desk - quick to grab but can only hold a little information.