Multiple Choice Questions
Answer all questions. Select an option to get instant feedback.
Question Navigator
Fill in the Blanks
Click a word in the pool to move it to the first empty blank. Click a filled blank to return the word.
Creative Activities
Interactive challenges: conversions, tracing, puzzles, and debugging exercises.
Short Answer Questions (1-3 Marks)
Review model answers and mark schemes for Cambridge IGCSE CS 0478.
Long Answer Questions (3-6 Marks)
Write detailed answers and trace calculations. Compare against model answers.
Key Takeaways
Essential concepts, definitions, and common exam pitfalls for Chapter 2.2: Methods of Error Detection.
CIE Command Word Decoder
Understanding command words is critical for exam success. Each word requires a different depth of response.
STATE / IDENTIFY
Brief, factual answer — no explanation needed
- 1024 bytes (2¹⁰)
- The count of identical items and the code of the item
- Between 5 and 15
- About 90%
- A nibble
DESCRIBE
Say what happens or how it works (what / how)
- Lossless: no information lost, reversible
- Lossy: some information lost, original unrecoverable
- Lossless suits text; lossy suits images/sound
- Frequency analysis finds the most used characters
- Frequent characters get the shortest codes
- The byte stream becomes a shorter variable-length bit stream
- Finds runs of adjacent identical data
- Stores a count followed by the code of the repeated item
- Only effective where long runs exist
- Removes frequencies outside the human hearing range
- When two sounds play together, removes the softer one
- Quality appears retained although data is lost
- Divide by 8 → 750 000 bytes
- Divide by 1024 → 732.4 KiB
- Divide by 1024 again → ≈0.72 MiB
EXPLAIN
Give reasons — say why something happens
- Larger files need larger storage capacity
- Larger files have lower transmission/download rates
- Compression reduces size, saving space, time and bandwidth
- An image may have few same-colour sequences
- Each single item then needs a count of 1
- Storing colour + count 1 adds data — e.g. Red 1 Green 1 Blue 1
- Every character matters — loss would change meaning
- Lossless can be reversed to re-create the original exactly
- Lossy would destroy data permanently
- Photographs have detail the eye can spare
- JPEG removes information the viewer hardly notices
- A factor of 5–15 gives big savings in storage and download time
- MP4 stores multimedia — video, music, photos, animation
- Compression reduces the data rate for real-time playback
- Videos stream without losing any real noticeable quality
EVALUATE / DISCUSS
Weigh up pros and cons with a justified conclusion
- Archive documents must be recoverable exactly
- Lossy compression permanently destroys data
- Lossless (RLE/Huffman) is the appropriate choice despite smaller savings
- Lower bit rate = smaller file, faster download
- More perceptual removal → audible quality loss
- The producer must balance fidelity against size for the audience
- JPEG gives the largest saving — fastest download
- At thumbnail size the lossy detail loss is invisible
- RLE preserves exactness but saves less on photos
- Less bandwidth used each week
- Faster start, less buffering
- Slight quality loss if lossy — usually imperceptible
- Exactness requirement forces lossless (text/records)
- Perceptual content allows lossy (photos/music) for bigger savings
- Data structure matters too — RLE fails without runs