<<< Binary numbers | Index | The binary numbers and humans >>> |
The internal use of binary numbers forces computers to manipulate types of data that have sizes like
1, 2, 4, 8, 16, 32, 64, and so on.
These numbers are known as powers of 2. For example,
64 = 2 * 2 * 2 * 2 * 2 * 2 = 26
64 equals 2 raised to the 6th power. The binary value of 64 is 1000000.
<<< Binary numbers | Index | The binary numbers and humans >>> |