IGCSE Computer Science 0478
Binary is a number system that uses only two digits: 0 and 1.
This is known as base-2, and it’s the core language that computers use to store and process information.
Computers are built on electronic circuits that recognize two states:
1 → ON0 → OFFBecause of this, binary is a natural and reliable fit for how digital systems operate.
| Feature | Decimal (Base-10) | Binary (Base-2) |
|---|---|---|
| Digits Used | 0–9 | 0, 1 |
| Place Values | Powers of 10 | Powers of 2 |
| Example | 245 = 2×100 + 4×10 + 5×1 | 1011 = 1×8 + 0×4 + 1×2 + 1×1 = 11 |
Multiply each bit by its corresponding power of 2 (from right to left), and add the results.