lesson

Updated 6 days ago ยท 2 views
Every photo on your phone, video you stream, and game you install is just a massive collection of 1s and 0s.
How do computers group tiny electrical switches into file sizes like megabytes and terabytes, and how do we convert between them in an exam?
The Building Blocks: Bits and Bytes
A bit (short for binary digit) is the smallest unit of data in computing, holding a single value of either
0 or 1.When we group bits together, we get larger measurable units: a nibble is 4 bits, and a byte is exactly 8 bits.
๐A visual diagram showing the hierarchy from a bit to a byte. At the left: a single switch labelled '1 Bit (0 or 1)'. In the middle: a box of 4 switches labelled '1 Nibble = 4 bits'. On the right: a box of 8 switches labelled '1 Byte = 8 bits' (often enough to store 1 ASCII character like 'A'). Color-coded with blue accents (#22b7ff) on a white card (#ffffff) with light gray background (#f8f9fa). Crisp text with subtle borders (#e6e6e6).
One byte can represent a single text character like the letter 'A', but real-world files need millions of them.
How do we scale up when dealing with thousands, millions, or trillions of bytes?
The Storage Ladder
In GCSE Computer Science, storage units step up in standard metric multiples of 1,000 (or binary multiples of 1,024 depending on your exam board specification).
The standard sequence from smallest to largest is: Kilobyte (KB), Megabyte (MB), Gigabyte (GB), and Terabyte (TB).
๐An interactive-style step ladder diagram showing unit sizes: Byte (B) at the bottom, then Kilobyte (1 KB = 1,000 B / 10^3 B), Megabyte (1 MB = 1,000 KB / 10^6 B), Gigabyte (1 GB = 1,000 MB / 10^9 B), and Terabyte (1 TB = 1,000 GB / 10^12 B) at the top. Next to the steps, arrows indicate: going UP to larger units means DIVIDE by 1,000; going DOWN to smaller units means MULTIPLY by 1,000. At the bottom, a special step shows Bits to Bytes with x8 / รท8.
A handy mnemonic to remember the order is: Kids Make Giant Treats (KB, MB, GB, TB).