- Why computers use binary
Two stable electronic states make binary the natural language of hardware.
A computer is built from millions of tiny switches (transistors) that are either on or off. These two states map perfectly onto the two binary digits:
- off → 0
- on → 1
Because there are only two states, signals are reliable (it is easy to tell 'on' from 'off', even with electrical noise). Every piece of data — numbers, text, images, sound — is ultimately stored as a pattern of these 0s and 1s called bits (binary digits).
| Term | Meaning |
|---|---|
| Bit | a single 0 or 1 |
| Nibble | 4 bits |
| Byte | 8 bits |
Other number systems (denary, hexadecimal) are just convenient ways for humans to read and write those underlying binary patterns.
- Transistors have two states → binary (0/1) is the natural fit.
- Two states = reliable signals.
- 1 bit, 4 bits = nibble, 8 bits = byte.
- Denary and hex are for humans; the machine works in binary.