You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
This lesson introduces the Central Processing Unit (CPU) and its role within a computer system, as specified in OCR J277 Section 1.1.1. You will learn what the CPU does, why it is essential, and how it fits into the wider architecture of a modern computer.
The CPU (Central Processing Unit) is the main processing component of a computer. It is responsible for:
The CPU is often referred to as the "brain" of the computer, although this is a simplification. The CPU does not think or reason — it rapidly processes binary instructions according to a fixed set of rules.
Modern CPUs are fabricated on a single silicon chip, often smaller than a postage stamp, yet they contain billions of transistors — tiny electronic switches that can be either on (1) or off (0). This is the physical basis of all digital computation.
A computer system consists of several key components that work together:
| Component | Role |
|---|---|
| CPU | Processes instructions and data |
| Main memory (RAM/ROM) | Stores data and instructions currently in use |
| Secondary storage | Stores data permanently (e.g. HDD, SSD) |
| Input devices | Allow users to send data into the system |
| Output devices | Present processed data to the user |
| System bus | Connects all components so they can communicate |
The CPU sits at the centre of this system. It communicates with all other components through the system bus — a set of wires that carry data, addresses, and control signals.
At the most fundamental level, the CPU repeats three activities in a continuous loop known as the fetch-decode-execute (FDE) cycle:
The CPU retrieves (fetches) the next instruction from main memory (RAM). The Program Counter (PC) register tells the CPU which memory address to fetch from.
The Control Unit (CU) examines the fetched instruction and works out what operation needs to be performed. This involves splitting the instruction into its opcode (the operation) and operand (the data or address the operation acts on).
The CPU carries out the instruction. This might involve:
This cycle repeats billions of times per second in a modern computer.
OCR Exam Tip: You must be able to describe the purpose of the CPU in simple terms. A good one-sentence answer is: "The CPU fetches, decodes, and executes program instructions stored in main memory."
Without the CPU, a computer cannot process any instructions. Every action a computer performs — from booting up the operating system, to displaying a webpage, to running a game — requires the CPU to process instructions.
The speed and capability of the CPU directly affects the overall performance of the computer. A faster CPU can process more instructions per second, which generally means programs run more quickly and the system feels more responsive.
CPUs are not only found in desktop computers and laptops. They are present in a wide range of devices:
The key difference between these CPUs is their power, size, and purpose, but they all perform the same fundamental task: fetching, decoding, and executing instructions.
| Term | Definition |
|---|---|
| CPU | Central Processing Unit — the main processor in a computer |
| Instruction | A single operation that the CPU can carry out |
| FDE cycle | Fetch-Decode-Execute — the continuous cycle the CPU follows |
| Transistor | A microscopic electronic switch that represents a binary digit |
| System bus | The communication pathway connecting the CPU to other components |
OCR Exam Tip: When asked about the purpose of the CPU, always mention fetching, decoding, and executing instructions. This demonstrates that you understand the FDE cycle, which is a key concept in Section 1.1.