Homeschool Guide: These lesson plans are a guide for parents. Content may contain errors — always cross-reference with official exam board specifications.
units of information
FoundationHigherAll Boards
4 detailed 50-minute lessons with teaching scripts, worked examples, parent guides, and assessment criteria.
Lesson Overview
Total Lessons: 4 Tier: Foundation and Higher Duration: 50 minutes per lesson (200 minutes total) Exam Boards: AQA, Edexcel, OCR, Eduqas, CCEA
Learning Objectives
Explain the key ideas of units of information
Apply units of information to exam-style questions
Key vocab to pre-teach: A bit, Larger units, Note on binary prefixes
Basic skills: reading the summary notes and answering the practice questions there
Materials & Equipment
Exercise book, coloured pens
Ruler
Printed revision notes (link below)
Internet for videos (see Resources)
Lesson 1: Introduction: units of information
Duration: 50 minutes
Starter Activity (5 minutes)
Quick Recall
Write down everything you already know about units of information. Then check against the key terms: A bit, Larger units, Note on binary prefixes. Use a mini-whiteboard or paper.
Main Content (35 minutes)
Parent/Teacher Guide: Before lesson: Read the script below. Pre-teach key vocab: A bit, Larger units, Note on binary prefixes. If stuck: Re-read the revision notes (link above), then break the content into smaller steps. Extension: See the Stretch & Challenge ideas in Lesson 4.
Teaching Script (35 mins): Mins 0-5 - Hook: "Today: units of information. By the end you will be able to answer exam questions on it unaided. It connects to the rest of Computer Science because the ideas here recur across the spec." Mins 5-20 - Direct Instruction: Work through the core ideas below one at a time; after each, ask your student to explain it back in their own words. Mins 20-30 - Guided Practice: Model the worked example together, then let your student attempt the first practice question with guidance. Mins 30-35 - Independent Practice: 2-3 practice questions from Lesson 3 below, with immediate feedback.
First Look
Start with the revision notes summary, then attempt: How many bytes are in 3.5 KB?
Plenary (5 minutes)
Check Out
Your student states one thing they learned and one question they still have about units of information.
Lesson 2: Core Concepts: units of information
Duration: 50 minutes
Starter Activity (5 minutes)
Review Previous Lesson
Quick recap: write 3 key points from Lesson 1 on units of information. Check them against the notes below.
Main Content (35 minutes)
A bit: (binary digit) is the smallest unit of data in computing. It can hold exactly one of two values: 0 or 1. All data in a computer - text, images, sound, video - is ultimately stored as bits.
Larger units: are multiples of bytes. At GCSE, you need to know the standard SI prefixes. Note: some specifications use powers of 2 (KiB, MiB) but most GCSE exams use the decimal (power of 10) definitions.
Note on binary prefixes: Some systems use KiB (kibibyte = 1024 bytes), MiB (mebibyte = 1048576 bytes), etc. These use powers of 2 (2^10 = 1024). Check your exam board specification for which system to use. Most GCSE exams use the decimal (1000-based) system.
To calculate file sizes,: you need to know how many bits or bytes are needed to store each element, then multiply by the number of elements.
When comparing data quantities,: always convert both values to the same unit first. This avoids confusion and makes comparison straightforward.
GCSE Computer Science Exam Tips: Know the hierarchy: bit → byte → KiB → MiB → GiB → TiB. Each step is ×1024. Always convert to the same unit before calculating. Watch for bits vs bytes (b vs B). If a question asks about storage capacity, convert everything to the same unit first. Show your conversion steps clearly for method marks.
Term
Meaning
Example
Bit
0 or 1
A single binary digit: on/off, yes/no, true/false
Byte
8 bits
A single character (in ASCII), a number from 0-255
Nibble
4 bits
A single hex digit (0-F)
Kilobyte (KB)
1,000 bytes
10^3 bytes
Megabyte (MB)
1,000,000 bytes
10^6 bytes / 1,000 KB
Gigabyte (GB)
1,000,000,000 bytes
10^9 bytes / 1,000 MB
Terabyte (TB)
1,000,000,000,000 bytes
10^12 bytes / 1,000 GB
Petabyte (PB)
1,000,000,000,000,000 bytes
10^15 bytes / 1,000 TB
Practice (10 minutes)
Q: How many bytes are in 3.5 KB?
Answer: 3.5 KB = 3.5 x 1,000 = 3,500 bytes.
Plenary (5 minutes)
Explain Back
Your student teaches the key points back to you without looking. Fill any gaps immediately.
Lesson 3: Application: units of information
Duration: 50 minutes
Starter Activity (5 minutes)
Quick Recall
Recall the key terms: A bit, Larger units, Note on binary prefixes. Define each in one sentence.
Main Content (35 minutes)
Parent/Teacher Guide: Let your student attempt each question alone first, then compare with the model answer. Award method marks for correct working even if the final answer is wrong.
Q1: How many bytes are in 3.5 KB?
Answer: 3.5 KB = 3.5 x 1,000 = 3,500 bytes.
Q2: A text file contains 2,000 characters stored in ASCII (1 byte per character). What is the file size in KB?
Answer: 2,000 characters x 1 byte = 2,000 bytes = 2,000 / 1,000 = 2 KB.
Q3: Calculate the size of a 640x480 pixel image with 8-bit colour depth in KB.
Answer: 640 x 480 x 8 = 2,457,600 bits = 307,200 bytes = 307.2 KB.
Q4: Which is larger: 0.5 GB or 600 MB? Show your working.
Answer: 0.5 GB = 0.5 x 1,000 = 500 MB. 600 MB > 500 MB, so 600 MB is larger.
Q5: A sound file is recorded at 22,050 Hz with 8-bit samples for 60 seconds. Calculate the file size in MB.
Answer: 22,050 x 8 x 60 = 10,584,000 bits = 1,323,000 bytes = 1,323 KB = 1.323 MB.
Plenary (5 minutes)
Error Review
Review any questions answered incorrectly. Identify whether the error was knowledge, method, or reading the question.
Lesson 4: Exam Practice: units of information
Duration: 50 minutes
Starter Activity (5 minutes)
Command Words
Review what these command words require: state (one point), describe (say what happens), explain (say why), compare (both sides), evaluate (judgement).
Main Content (35 minutes)
Extended Answer
Extended question: Full-Mark Response A photo is 4.2 MB. Calculate how many photos of this size can be stored on a 16 GB memory card. Show your working and state any assumptions. [3 marks] <div class="
16 GB = 16 × 1024 MB = 16384 MB Number of photos = 16384 ÷ 4.2 = 3900.95... Assumption: 1 GB = 1024 MB (binary prefix) and the storage has no overhead for file system metadata. Approximately 3900 photos can be stored.
Exam Tips: 1 byte = 8 bits - this is the most fundamental relationship to remember | For GCSE, typically use 1000 (not 1024) as the multiplier between units | Always convert to the same unit before comparing | For image size: width x height x colour depth (in bits) | For sound size: sample rate x resolution x duration x channels | Check if the question asks for the answer in bits, bytes, KB, or MB
Common Errors: ✗ Confusing bits and bytes ✓ 1 byte = 8 bits. A bit is a single 0 or 1; a byte is the smallest addressable unit of memory and can store one character. ✗ Thinking 1 KB = 1000 bytes ✓ In computing, 1 KiB (kibibyte) = 1024 bytes (2¹⁰). The term KB is often used informally for 1024 bytes, though technically KB = 1000 bytes in SI units. ✗ Mixing up the prefixes: kilo, mega, giga, tera ✓ Each prefix is 1024 times the previous: 1 KiB = 1024 B, 1 MiB = 1024 KiB, 1 GiB = 1024 MiB, 1 TiB = 1024 GiB. ✗ Forgetting that file sizes and storage are measured in bytes, not bits ✓ Storage and file sizes use bytes (KB, MB, GB). Network speeds are often measured in bits per second (Mbps, Gbps). Don't confuse MB
Stretch & Challenge (Grade 8-9):
Synoptic links: explain how units of information connects to another Computer Science topic you have studied
Real-world: research one real-world use or example of units of information
Critical: "What are the limitations of the models used in units of information?"
Plenary (5 minutes)
Assessment Criteria
Got it: Confident explanation + correct worked examples
Getting there: Main points OK, needs support with detail
Not yet: Confused on key concepts - re-run Lesson 2
Homework & Consolidation
Consolidation: Re-answer any Lesson 3 practice questions answered incorrectly (20 mins)
Retrieval: Write flashcards for the key terms: A bit, Larger units, Note on binary prefixes (10 mins)
Exam practice: One past-paper question on units of information from the board websites (15 mins)
Extension: Explain units of information to someone else in your own words (10 mins)