Each digit in a binary number is called a "bit", short for "binary digit". In binary representation, each bit either represents a 0 or a 1.
Understanding bits is crucial since they serve as the basic unit of storage and information in computing. The place of a bit in binary representation indicates its power of two, thereby contributing a specific value to the number it constructs:
- A '1' in the farthest right bit (2^0) accounts for 1, if present.
- A '1' in the next bit to the left (2^1) accounts for 2, if present.
- This pattern continues, with each shift left representing an increase in power (2^2 for 4, 2^3 for 8, etc.).
Thus, an understanding of individual bits allows one to reconstruct entire numbers. For example, the number '4' in binary, represented as '100', comprises one bit set at 2^2, with no contributions from lower powers.