Knowunity AI

Open the App

Subjects

Computer ScienceComputer Science443 views·Updated May 23, 2026·27 pages

GCSE Computer Science Revision Notes - OCR J277 Specification

S
Sir@sirname

Computer systems might seem complex, but they're actually quite logical... Show more

1
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Getting Started with Systems Architecture

This is your introduction to the fundamental concepts you'll need to master for GCSE Computer Science. We're covering CPU architecture, memory systems, and data storage - the building blocks of every computer you use.

Understanding these concepts will help you tackle exam questions confidently and give you a solid foundation for more advanced computing topics.

Quick Tip: These notes focus on the most important points for your exam, so you can revise efficiently without getting bogged down in unnecessary detail.

2
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

CPU Architecture Fundamentals

Your CPU is basically the brain of your computer, and it follows a simple three-step process called the fetch-decode-execute cycle. First, it fetches instructions from memory (RAM), then decodes what needs to be done, and finally executes the instruction by doing calculations or storing information.

The CPU contains several key components that work together. The Arithmetic Logic Unit (ALU) handles all mathematical operations like addition, subtraction, and logical operations like AND and OR. The Control Unit acts like a conductor, coordinating all CPU activities and sending control signals to synchronise data movement.

Cache memory stores your most frequently used instructions right inside the CPU, which makes accessing them much faster than going all the way to RAM. Registers are tiny memory locations within the CPU that hold specific pieces of data temporarily - think of them as the CPU's scratchpad.

Remember: The fetch-decode-execute cycle repeats constantly while your computer is running, millions of times per second!

3
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Von Neumann Architecture and Key Registers

Von Neumann architecture describes how most computers are designed - with data and instructions stored together in the same memory area. This might seem obvious, but it's actually a specific design choice that makes computers more flexible.

Four crucial registers make this architecture work smoothly. The Memory Address Register (MAR) stores the address of where data needs to be fetched from or stored to. The Memory Data Register (MDR) holds the actual data being transferred to or from memory.

The Program Counter keeps track of which instruction comes next by storing its memory address - it automatically increments by 1 after each instruction. Finally, the Accumulator stores the results of calculations performed by the ALU.

Exam Tip: Learn these four registers well - they're frequently tested and understanding them helps explain how the fetch-decode-execute cycle actually works.

4
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

CPU Performance Factors

Three main factors determine how fast your CPU can process information. Clock speed, measured in hertz (Hz), determines how many instructions your CPU can execute per second - modern CPUs typically run at around 4GHz, meaning 4 billion instructions per second!

Cache size significantly impacts performance because accessing cache memory is much faster than accessing main memory (RAM). The more data that can be stored in cache rather than RAM, the more efficient your system becomes. However, cache memory is expensive, so there's always a trade-off.

Multiple processor cores allow your CPU to handle several instructions simultaneously, like having multiple workers instead of just one. However, this only helps if your software is specifically designed to take advantage of multiple cores - otherwise, those extra cores just sit idle.

Real-world Connection: This is why a newer CPU with fewer cores but higher clock speed might feel faster for everyday tasks than an older CPU with more cores.

5
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Embedded Systems

Embedded systems are specialised computers designed to perform one specific job really well. Unlike your laptop or phone, they're built for a single purpose and can't run different software.

These systems are typically manufactured as a single chip, making them incredibly robust and reliable compared to general-purpose computers. They're designed to be small, consume minimal power, and operate at low cost whilst being highly efficient at their specific task.

You'll find embedded systems everywhere in daily life - washing machines, microwaves, car engines, home security systems, and even smart TVs all contain embedded systems. They're so common that you probably interact with dozens of them every day without realising it.

Think About It: Your smartphone contains multiple embedded systems working alongside the main processor - the camera, GPS, and wireless chips all have their own embedded systems.

6
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Memory and Storage Overview

Understanding different types of memory and storage is crucial for grasping how computers manage information. We'll explore primary storage (RAM and ROM) and secondary storage options, plus how computers measure and handle data.

This section covers essential concepts for your exam, including virtual memory, storage technologies, and data representation methods.

7
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Primary Storage: RAM and ROM

RAM (Random Access Memory) is your computer's working space - it holds the operating system, running applications, and their data while you're using them. However, RAM is volatile, meaning everything disappears when you turn off the power. It's fast, can be read from and written to, but only works temporarily.

ROM ReadOnlyMemoryRead-Only Memory stores essential startup instructions (the BIOS) that your computer needs to boot up. Unlike RAM, ROM is non-volatile - it keeps its data even when powered off. You can only read from ROM during normal operation, not write to it.

When you run out of RAM, your computer uses virtual memory - basically borrowing space from your hard drive to extend RAM. This works but slows things down significantly because transferring data between RAM and storage is much slower than keeping everything in RAM.

Performance Tip: Adding more RAM reduces the need for virtual memory, which directly improves your computer's speed and responsiveness.

8
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Secondary Storage Technologies

Secondary storage provides permanent, non-volatile storage for your files and programs. You need storage that's reliable, high-capacity, and cost-effective.

Magnetic storage (like traditional hard disk drives) uses spinning magnetic disks with moving read/write heads. They're reliable, cost-effective, and offer high capacity at low prices, but they're not very portable due to their moving parts.

Solid-state storage uses flash memory with no moving parts, making it faster, more robust, and power-efficient than magnetic storage. SSDs are perfect for portable devices but cost more per gigabyte and typically offer smaller capacities than traditional hard drives.

Optical storage CDs,DVDs,BlurayCDs, DVDs, Blu-ray uses laser light to read data from rotating discs. They're portable and good for distributing media, but easily damaged by scratches and have limited storage capacity compared to other technologies.

Choosing Storage: SSDs are becoming the standard for speed-critical applications, while traditional hard drives remain popular for bulk storage where cost matters more than speed.

9
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Data Units and File Size Calculations

Computers use binary (0s and 1s) because they work with switches that are either on or off. Understanding data units helps you calculate storage requirements and compare different systems.

The hierarchy goes: 4 bits = 1 nibble, 8 bits = 1 byte, then 1000 bytes = 1 kilobyte (KB), 1000KB = 1 megabyte (MB), 1000MB = 1 gigabyte (GB), and so on up to terabytes and petabytes.

You can calculate file sizes using these formulas: sound file size = sample rate × duration × bit depth, image file size = colour depth × height × width, and text file size = bits per character × number of characters.

Exam Success: Learn these formulas by heart - they appear frequently in exam questions and are straightforward marks if you know them.

10
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

We thought you’d never ask...

What is the Knowunity AI companion?

Our AI Companion is a student-focused AI tool that offers more than just answers. Built on millions of Knowunity resources, it provides relevant information, personalised study plans, quizzes, and content directly in the chat, adapting to your individual learning journey.

Where can I download the Knowunity app?

You can download the app from Google Play Store and Apple App Store.

Is Knowunity really free of charge?

That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.

Most popular content: Computer System

8
Computer ScienceComputer Science

GCSE Computer Science Overview

Comprehensive study material for OCR GCSE Computer Science covering key topics such as computer architecture, network security, programming techniques, and ethical considerations. Ideal for exam preparation, this resource includes essential concepts, exam questions, and definitions to enhance understanding and retention.

97,828303
Computer ScienceComputer Science

1.1

Computer Science A Level OCR 1.1

123852
Computer ScienceComputer Science

Computer Hardware Essentials

Explore key concepts of computer hardware, including CPU architecture, memory types (RAM, ROM), and embedded systems. This revision guide covers the von Neumann architecture, data storage methods, and performance factors affecting CPUs. Ideal for EDEXCEL Computer Science students preparing for exams.

954811
Computer ScienceComputer Science

Understanding Operating Systems

Explore the essential functions of operating systems, including file management, memory management, and user interfaces. This summary covers key concepts such as fragmentation, multitasking, and device drivers, providing a comprehensive overview for GCSE OCR Computing Paper 1. Ideal for students seeking to grasp the fundamentals of system software.

101483
Computer ScienceComputer Science

Essential Computer Components

Explore the key components of a computer system, including the CPU, motherboard, RAM, HDD, SSD, and GPU. This summary provides a clear overview of each part's function and importance in computer architecture, tailored for Edexcel GCSE Computer Science students.

102383
Computer ScienceComputer Science

OCR GCSE Computer Science Overview

Comprehensive guide to the J277 OCR GCSE Computer Science specification, covering key concepts, programming fundamentals, algorithms, and exam preparation strategies. Essential for students aiming to excel in their Computer Science exams.

109496
Computer ScienceComputer Science

Understanding CPU Architecture

Explore the essential components of computer systems, focusing on CPU architecture, memory types, and the fetch-execute cycle. This summary covers key concepts such as the Von Neumann architecture, CPU processes, and the roles of primary and secondary storage. Ideal for students seeking a clear overview of computer hardware and its functions.

91595
ICTICT

Data Processing & Accessibility

Explore the differences between manual and automatic data processing, including their advantages and disadvantages. Learn about various accessibility devices designed to assist individuals with disabilities in using computer systems. This summary covers key concepts in peripheral devices, input/output methods, and storage solutions, making it essential for understanding ICT systems.

121232

Most popular content in Computer Science

9
Computer ScienceComputer Science

GCSE Computer Science Overview

Comprehensive study material for OCR GCSE Computer Science covering key topics such as computer architecture, network security, programming techniques, and ethical considerations. Ideal for exam preparation, this resource includes essential concepts, exam questions, and definitions to enhance understanding and retention.

97,828303
C
Computer ScienceComputer Science

Computer Science quiz

Purpose, Components and functions of CPU. Also von neuman architecture

105824
Computer ScienceComputer Science

GCSE Computer Science Revision

Comprehensive revision notes for OCR GCSE Computer Science Component 1 (J277). Covers key topics including networking, cybersecurity, data compression, computer architecture, and ethical issues. Ideal for exam preparation and understanding core concepts. Access original slides for further details.

104,819151
Computer ScienceComputer Science

GCSE Computer Science Algorithms

Comprehensive overview of algorithms for AQA GCSE Computer Science Paper 1, covering key concepts such as sorting (Bubble Sort, Merge Sort), searching (Linear and Binary Search), and essential programming principles like data types, pseudocode, and flowcharts. Ideal for exam preparation and understanding algorithm efficiency.

1073256
C
Computer ScienceComputer Science

computing quiz for

good luck

101150
C
Computer ScienceComputer Science

computer science,geography

this will help you revise for when you are next tested on these questions this will also help you to remember

71821
Computer ScienceComputer Science

AQA GCSE Computer Science Overview

Comprehensive revision notes covering the AQA GCSE Computer Science curriculum, including key topics such as computer memory, cybersecurity, programming concepts, network protocols, and data representation. Ideal for exam preparation and understanding core concepts in computing.

105,345216
Computer ScienceComputer Science

GCSE Computer Science Revision Notes

Concise revision notes for the GCSE OCR computer science specification (J277). Contains all the info needed for paper 2. Paper 1 is in my bio.

102442
C
Computer ScienceComputer Science

cs ocr

Level up your computer science knowledge with this comprehensive flashcard set designed for grade 11 students. Dive deep into complex concepts and ace your exams!

114910

Most popular content

9
SociologySociology

Sociology of Education Overview

Explore comprehensive A-Level Sociology notes on the education system, covering key theories, policies, and sociological perspectives. This resource includes insights on marketisation, gender roles, cultural deprivation, and educational inequalities, providing a thorough understanding of how education shapes social stratification and individual achievement. Ideal for exam preparation and in-depth study.

12102,1563,036
SociologySociology

Sociology of Families: Comprehensive Revision

Dive into an extensive overview of family dynamics, perspectives, and patterns in sociology. This resource covers key concepts such as family diversity, gender roles, marriage, and the impact of social policies on family structures. Perfect for A-Level Sociology students preparing for Paper 2.

1273,0542,303
CriminologyCriminology

Criminology: Crime & Punishment Overview

Comprehensive mindmaps covering key concepts in the Crime and Punishment topic for WJEC Criminology Unit 4. This resource includes detailed insights into the Criminal Justice System, crime prevention strategies, sentencing models, and the roles of various agencies. Ideal for A-Level revision, ensuring you grasp essential theories and legislative processes to excel in your exams.

1253,2031,042
English LiteratureEnglish Literature

An Inspector Calls: Character Insights

Explore in-depth analysis and key quotes for characters in J.B. Priestley's 'An Inspector Calls'. This resource covers Gerald Croft, Inspector Goole, Sheila Birling, Mrs. Birling, Eric Birling, and Eva Smith, focusing on themes of class, gender roles, and social responsibility. Ideal for students aiming for Grade 8 and above.

1025,110899
CriminologyCriminology

WJEC Unit 4 Criminology

Criminology unit 4 detailed revision note

126,809122
CriminologyCriminology

Criminology Theories Overview

Explore key criminology theories and their implications on crime and deviance. This comprehensive summary covers biological, psychological, and sociological perspectives, including labelling theory, right realism, and the impact of social campaigns on policy development. Ideal for A-Level criminology students seeking to understand the complexities of criminal behaviour and the factors influencing crime prevention strategies.

129,737211
English LiteratureEnglish Literature

Romeo and Juliet: Key themes

Key Romeo and Juliet themes and analysed quotes

106,573194
English LiteratureEnglish Literature

Macbeth: Guilt and Ambition

Explore the complex themes of guilt and ambition in Shakespeare's 'Macbeth'. This analysis covers key characters, including Macbeth and Lady Macbeth, their moral dilemmas, and the tragic consequences of their ambition. Ideal for students studying character motivations, thematic elements, and the psychological impact of power. Includes insights on the natural order, manipulation, and the descent into madness.

918,707388
C
BiologyBiology

Cell Biology and Cell structure

cell structures

92,4940

Can't find what you're looking for? Explore other subjects.

Students love us — and so will you.

4.6/5App Store
4.7/5Google Play

The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.

Stefan SiOS user

This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.

Samantha KlichAndroid user

Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.

AnnaiOS user

Computer ScienceComputer Science443 views·Updated May 23, 2026·27 pages

GCSE Computer Science Revision Notes - OCR J277 Specification

S
Sir@sirname

Computer systems might seem complex, but they're actually quite logical once you understand the basics. This guide covers the essential components of CPU architecture, memory systems, and data storage - all key topics for your GCSE Computer Science exam.

1
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Getting Started with Systems Architecture

This is your introduction to the fundamental concepts you'll need to master for GCSE Computer Science. We're covering CPU architecture, memory systems, and data storage - the building blocks of every computer you use.

Understanding these concepts will help you tackle exam questions confidently and give you a solid foundation for more advanced computing topics.

Quick Tip: These notes focus on the most important points for your exam, so you can revise efficiently without getting bogged down in unnecessary detail.

2
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

CPU Architecture Fundamentals

Your CPU is basically the brain of your computer, and it follows a simple three-step process called the fetch-decode-execute cycle. First, it fetches instructions from memory (RAM), then decodes what needs to be done, and finally executes the instruction by doing calculations or storing information.

The CPU contains several key components that work together. The Arithmetic Logic Unit (ALU) handles all mathematical operations like addition, subtraction, and logical operations like AND and OR. The Control Unit acts like a conductor, coordinating all CPU activities and sending control signals to synchronise data movement.

Cache memory stores your most frequently used instructions right inside the CPU, which makes accessing them much faster than going all the way to RAM. Registers are tiny memory locations within the CPU that hold specific pieces of data temporarily - think of them as the CPU's scratchpad.

Remember: The fetch-decode-execute cycle repeats constantly while your computer is running, millions of times per second!

3
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Von Neumann Architecture and Key Registers

Von Neumann architecture describes how most computers are designed - with data and instructions stored together in the same memory area. This might seem obvious, but it's actually a specific design choice that makes computers more flexible.

Four crucial registers make this architecture work smoothly. The Memory Address Register (MAR) stores the address of where data needs to be fetched from or stored to. The Memory Data Register (MDR) holds the actual data being transferred to or from memory.

The Program Counter keeps track of which instruction comes next by storing its memory address - it automatically increments by 1 after each instruction. Finally, the Accumulator stores the results of calculations performed by the ALU.

Exam Tip: Learn these four registers well - they're frequently tested and understanding them helps explain how the fetch-decode-execute cycle actually works.

4
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

CPU Performance Factors

Three main factors determine how fast your CPU can process information. Clock speed, measured in hertz (Hz), determines how many instructions your CPU can execute per second - modern CPUs typically run at around 4GHz, meaning 4 billion instructions per second!

Cache size significantly impacts performance because accessing cache memory is much faster than accessing main memory (RAM). The more data that can be stored in cache rather than RAM, the more efficient your system becomes. However, cache memory is expensive, so there's always a trade-off.

Multiple processor cores allow your CPU to handle several instructions simultaneously, like having multiple workers instead of just one. However, this only helps if your software is specifically designed to take advantage of multiple cores - otherwise, those extra cores just sit idle.

Real-world Connection: This is why a newer CPU with fewer cores but higher clock speed might feel faster for everyday tasks than an older CPU with more cores.

5
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Embedded Systems

Embedded systems are specialised computers designed to perform one specific job really well. Unlike your laptop or phone, they're built for a single purpose and can't run different software.

These systems are typically manufactured as a single chip, making them incredibly robust and reliable compared to general-purpose computers. They're designed to be small, consume minimal power, and operate at low cost whilst being highly efficient at their specific task.

You'll find embedded systems everywhere in daily life - washing machines, microwaves, car engines, home security systems, and even smart TVs all contain embedded systems. They're so common that you probably interact with dozens of them every day without realising it.

Think About It: Your smartphone contains multiple embedded systems working alongside the main processor - the camera, GPS, and wireless chips all have their own embedded systems.

6
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Memory and Storage Overview

Understanding different types of memory and storage is crucial for grasping how computers manage information. We'll explore primary storage (RAM and ROM) and secondary storage options, plus how computers measure and handle data.

This section covers essential concepts for your exam, including virtual memory, storage technologies, and data representation methods.

7
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Primary Storage: RAM and ROM

RAM (Random Access Memory) is your computer's working space - it holds the operating system, running applications, and their data while you're using them. However, RAM is volatile, meaning everything disappears when you turn off the power. It's fast, can be read from and written to, but only works temporarily.

ROM ReadOnlyMemoryRead-Only Memory stores essential startup instructions (the BIOS) that your computer needs to boot up. Unlike RAM, ROM is non-volatile - it keeps its data even when powered off. You can only read from ROM during normal operation, not write to it.

When you run out of RAM, your computer uses virtual memory - basically borrowing space from your hard drive to extend RAM. This works but slows things down significantly because transferring data between RAM and storage is much slower than keeping everything in RAM.

Performance Tip: Adding more RAM reduces the need for virtual memory, which directly improves your computer's speed and responsiveness.

8
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Secondary Storage Technologies

Secondary storage provides permanent, non-volatile storage for your files and programs. You need storage that's reliable, high-capacity, and cost-effective.

Magnetic storage (like traditional hard disk drives) uses spinning magnetic disks with moving read/write heads. They're reliable, cost-effective, and offer high capacity at low prices, but they're not very portable due to their moving parts.

Solid-state storage uses flash memory with no moving parts, making it faster, more robust, and power-efficient than magnetic storage. SSDs are perfect for portable devices but cost more per gigabyte and typically offer smaller capacities than traditional hard drives.

Optical storage CDs,DVDs,BlurayCDs, DVDs, Blu-ray uses laser light to read data from rotating discs. They're portable and good for distributing media, but easily damaged by scratches and have limited storage capacity compared to other technologies.

Choosing Storage: SSDs are becoming the standard for speed-critical applications, while traditional hard drives remain popular for bulk storage where cost matters more than speed.

9
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

Data Units and File Size Calculations

Computers use binary (0s and 1s) because they work with switches that are either on or off. Understanding data units helps you calculate storage requirements and compare different systems.

The hierarchy goes: 4 bits = 1 nibble, 8 bits = 1 byte, then 1000 bytes = 1 kilobyte (KB), 1000KB = 1 megabyte (MB), 1000MB = 1 gigabyte (GB), and so on up to terabytes and petabytes.

You can calculate file sizes using these formulas: sound file size = sample rate × duration × bit depth, image file size = colour depth × height × width, and text file size = bits per character × number of characters.

Exam Success: Learn these formulas by heart - they appear frequently in exam questions and are straightforward marks if you know them.

10
of 10
# GCST

# 1.1

# SYSTEMS

# ARCHITECTURE

CONCISE NOTES

GCSE OCR

GCSECOMPUTERSCIENCETUTOR.COM # GCST

## 1.1.1 ARCHITECTURE OF THE CPU

Th

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

We thought you’d never ask...

What is the Knowunity AI companion?

Our AI Companion is a student-focused AI tool that offers more than just answers. Built on millions of Knowunity resources, it provides relevant information, personalised study plans, quizzes, and content directly in the chat, adapting to your individual learning journey.

Where can I download the Knowunity app?

You can download the app from Google Play Store and Apple App Store.

Is Knowunity really free of charge?

That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.

Most popular content: Computer System

8
Computer ScienceComputer Science

GCSE Computer Science Overview

Comprehensive study material for OCR GCSE Computer Science covering key topics such as computer architecture, network security, programming techniques, and ethical considerations. Ideal for exam preparation, this resource includes essential concepts, exam questions, and definitions to enhance understanding and retention.

97,828303
Computer ScienceComputer Science

1.1

Computer Science A Level OCR 1.1

123852
Computer ScienceComputer Science

Computer Hardware Essentials

Explore key concepts of computer hardware, including CPU architecture, memory types (RAM, ROM), and embedded systems. This revision guide covers the von Neumann architecture, data storage methods, and performance factors affecting CPUs. Ideal for EDEXCEL Computer Science students preparing for exams.

954811
Computer ScienceComputer Science

Understanding Operating Systems

Explore the essential functions of operating systems, including file management, memory management, and user interfaces. This summary covers key concepts such as fragmentation, multitasking, and device drivers, providing a comprehensive overview for GCSE OCR Computing Paper 1. Ideal for students seeking to grasp the fundamentals of system software.

101483
Computer ScienceComputer Science

Essential Computer Components

Explore the key components of a computer system, including the CPU, motherboard, RAM, HDD, SSD, and GPU. This summary provides a clear overview of each part's function and importance in computer architecture, tailored for Edexcel GCSE Computer Science students.

102383
Computer ScienceComputer Science

OCR GCSE Computer Science Overview

Comprehensive guide to the J277 OCR GCSE Computer Science specification, covering key concepts, programming fundamentals, algorithms, and exam preparation strategies. Essential for students aiming to excel in their Computer Science exams.

109496
Computer ScienceComputer Science

Understanding CPU Architecture

Explore the essential components of computer systems, focusing on CPU architecture, memory types, and the fetch-execute cycle. This summary covers key concepts such as the Von Neumann architecture, CPU processes, and the roles of primary and secondary storage. Ideal for students seeking a clear overview of computer hardware and its functions.

91595
ICTICT

Data Processing & Accessibility

Explore the differences between manual and automatic data processing, including their advantages and disadvantages. Learn about various accessibility devices designed to assist individuals with disabilities in using computer systems. This summary covers key concepts in peripheral devices, input/output methods, and storage solutions, making it essential for understanding ICT systems.

121232

Most popular content in Computer Science

9
Computer ScienceComputer Science

GCSE Computer Science Overview

Comprehensive study material for OCR GCSE Computer Science covering key topics such as computer architecture, network security, programming techniques, and ethical considerations. Ideal for exam preparation, this resource includes essential concepts, exam questions, and definitions to enhance understanding and retention.

97,828303
C
Computer ScienceComputer Science

Computer Science quiz

Purpose, Components and functions of CPU. Also von neuman architecture

105824
Computer ScienceComputer Science

GCSE Computer Science Revision

Comprehensive revision notes for OCR GCSE Computer Science Component 1 (J277). Covers key topics including networking, cybersecurity, data compression, computer architecture, and ethical issues. Ideal for exam preparation and understanding core concepts. Access original slides for further details.

104,819151
Computer ScienceComputer Science

GCSE Computer Science Algorithms

Comprehensive overview of algorithms for AQA GCSE Computer Science Paper 1, covering key concepts such as sorting (Bubble Sort, Merge Sort), searching (Linear and Binary Search), and essential programming principles like data types, pseudocode, and flowcharts. Ideal for exam preparation and understanding algorithm efficiency.

1073256
C
Computer ScienceComputer Science

computing quiz for

good luck

101150
C
Computer ScienceComputer Science

computer science,geography

this will help you revise for when you are next tested on these questions this will also help you to remember

71821
Computer ScienceComputer Science

AQA GCSE Computer Science Overview

Comprehensive revision notes covering the AQA GCSE Computer Science curriculum, including key topics such as computer memory, cybersecurity, programming concepts, network protocols, and data representation. Ideal for exam preparation and understanding core concepts in computing.

105,345216
Computer ScienceComputer Science

GCSE Computer Science Revision Notes

Concise revision notes for the GCSE OCR computer science specification (J277). Contains all the info needed for paper 2. Paper 1 is in my bio.

102442
C
Computer ScienceComputer Science

cs ocr

Level up your computer science knowledge with this comprehensive flashcard set designed for grade 11 students. Dive deep into complex concepts and ace your exams!

114910

Most popular content

9
SociologySociology

Sociology of Education Overview

Explore comprehensive A-Level Sociology notes on the education system, covering key theories, policies, and sociological perspectives. This resource includes insights on marketisation, gender roles, cultural deprivation, and educational inequalities, providing a thorough understanding of how education shapes social stratification and individual achievement. Ideal for exam preparation and in-depth study.

12102,1563,036
SociologySociology

Sociology of Families: Comprehensive Revision

Dive into an extensive overview of family dynamics, perspectives, and patterns in sociology. This resource covers key concepts such as family diversity, gender roles, marriage, and the impact of social policies on family structures. Perfect for A-Level Sociology students preparing for Paper 2.

1273,0542,303
CriminologyCriminology

Criminology: Crime & Punishment Overview

Comprehensive mindmaps covering key concepts in the Crime and Punishment topic for WJEC Criminology Unit 4. This resource includes detailed insights into the Criminal Justice System, crime prevention strategies, sentencing models, and the roles of various agencies. Ideal for A-Level revision, ensuring you grasp essential theories and legislative processes to excel in your exams.

1253,2031,042
English LiteratureEnglish Literature

An Inspector Calls: Character Insights

Explore in-depth analysis and key quotes for characters in J.B. Priestley's 'An Inspector Calls'. This resource covers Gerald Croft, Inspector Goole, Sheila Birling, Mrs. Birling, Eric Birling, and Eva Smith, focusing on themes of class, gender roles, and social responsibility. Ideal for students aiming for Grade 8 and above.

1025,110899
CriminologyCriminology

WJEC Unit 4 Criminology

Criminology unit 4 detailed revision note

126,809122
CriminologyCriminology

Criminology Theories Overview

Explore key criminology theories and their implications on crime and deviance. This comprehensive summary covers biological, psychological, and sociological perspectives, including labelling theory, right realism, and the impact of social campaigns on policy development. Ideal for A-Level criminology students seeking to understand the complexities of criminal behaviour and the factors influencing crime prevention strategies.

129,737211
English LiteratureEnglish Literature

Romeo and Juliet: Key themes

Key Romeo and Juliet themes and analysed quotes

106,573194
English LiteratureEnglish Literature

Macbeth: Guilt and Ambition

Explore the complex themes of guilt and ambition in Shakespeare's 'Macbeth'. This analysis covers key characters, including Macbeth and Lady Macbeth, their moral dilemmas, and the tragic consequences of their ambition. Ideal for students studying character motivations, thematic elements, and the psychological impact of power. Includes insights on the natural order, manipulation, and the descent into madness.

918,707388
C
BiologyBiology

Cell Biology and Cell structure

cell structures

92,4940

Can't find what you're looking for? Explore other subjects.

Students love us — and so will you.

4.6/5App Store
4.7/5Google Play

The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.

Stefan SiOS user

This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.

Samantha KlichAndroid user

Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.

AnnaiOS user