Computer Science GCES AQA
-
Representing Algorithms Aqa4 主题
-
Efficiency Of Algorithms Aqa1 主题
-
Searching Algorithms Aqa3 主题
-
Sorting Algorithms Aqa3 主题
-
Data Types Aqa1 主题
-
Programming Concepts Aqa5 主题
-
Arithmetic Relational And Boolean Operations Aqa1 主题
-
Data Structures Aqa3 主题
-
String Manipulation Aqa1 主题
-
Random Number Generation Aqa1 主题
-
Structured Programming Aqa2 主题
-
Robust And Secure Programming Aqa4 主题
-
Number Bases Aqa2 主题
-
Converting Between Number Bases Aqa3 主题
-
Units Of Information Aqa9 主题
-
Hardware And Software Aqa4 主题
-
Boolean Logic Aqa3 主题
-
Programming Languages And Translators Aqa2 主题
-
Cpu Architecture Performance And Embedded Systems Aqa4 主题
-
Memory Aqa2 主题
-
Secondary Storage Aqa3 主题
-
Fundamentals Of Computer Networks Aqa8 主题
-
Fundamentals Of Cyber Security Aqa1 主题
-
Methods Of Preventing Cyber Security Threats Aqa1 主题
-
Relational Databases Aqa2 主题
-
Ethical Legal And Environmental Impacts Aqa2 主题
Cpu Components And Their Function Aqa
Exam code:8525
CPU Components & Their Function
What is the Von Neumann architecture?
-
The Von Neumann Architecture is a design of the CPU which was proposed by Mathematician John Von Neumann in the 1940s, which most general-purpose computers are built upon
-
The Von Neumann Architecture outlines how the computer memory, input / output devices and processor all work together
Examiner Tips and Tricks
Key specification changes for AQA GCSE Computer Science (8525) – first exam 2027
-
You no longer need to explain the role and operation of components specifically “within the Von Neumann architecture”
-
While the components of the CPU (arithmetic logic unit, control unit, clock, register, bus) are still relevant, the explicit link to Von Neumann is removed
What are the components of the CPU?
-
The CPU is made up of 5 key components
-
Arithmetic Logic Unit (ALU)
-
Control Unit (CU)
-
Clock
-
Registers
-
Bus
-
-
Each of the components sits within the CPU

What is the function of each component?
Arithmetic logic unit (ALU)
-
Performs arithmetic operations
-
Performs logical decisions
-
IF X > 5 THEN
DO ……….
-
Control unit (CU)
-
Coordinates how data moves around the CPU by sending a signal to control the movement of the data
-
Decodes the instructions fetched from memory
Clock
-
Keeps related components in sync by generating pulses at a constant rate
Registers
-
Extremely small, extremely fast memory located in the CPU
-
Hold small amounts of data needed as part of the fetch-execute cycle
-
Each register has its own specific purpose
-
Accumulator (ACC) – stores results of logical or arithmetic calculations carried out by the ALU
-
Memory address register (MAR) – stores the address of the next instruction to be fetched from RAM
-
Memory data register (MDR) – stores the data retrieved from RAM
-
Program counter (PC) – stores the memory address of the next instructions to be executed & Increments by 1 as the fetch-decode-execute cycle runs
-
Bus
-
A bus is a collection of wires through which data/signals are transmitted from one component to another
Responses