==Binary System==: A system of ones(1) and zeroes(0) which is the building block in a computer.
Binary is a number system based on the number ^^2,^^ i.e it counts in multiples of 2. Like 2,4,8,16 and so on.
<br />
Example use of Binary:
0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 |
---|---|---|---|---|---|---|---|
2^7 = 128 | 2^6 = 64 | 2^5 = 32 | 2^4 = 16 | 2^3 = 8 | 2^2 = 4 | 2^1 = 2 | 2^0 = 1 |
32 + 8 + 4 + 1 = 45
In order to convert a Denary number to a Binary value, ^^repetitive division^^ is used. Using 107 as an example:
Name Of Memory Size | Number Of Bits | Number Of Bytes |
---|---|---|
1 Kilobyte (KB) | 2^10 | 1024 |
1 Megabyte (MB) | 2^20 | 1024^2 |
1 Gigabyte (GB) | 2^30 | 1024^3 |
1 Terabyte (TB) | 2^40 | 1024^4 |
1 Petabyte (PB) | 2^50 | 1024^5 |
Binary | Denary | Hexadecimal |
---|---|---|
0000 | 0 | 0 |
0001 | 1 | 1 |
0010 | 2 | 2 |
0011 | 3 | 3 |
0100 | 4 | 4 |
0101 | 5 | 5 |
0110 | 6 | 6 |
011q | 7 | 7 |
1000 | 8 | 8 |
1001 | 9 | 9 |
1010 | 10 | A |
1011 | 11 | B |
1100 | 12 | C |
1101 | 13 | D |
1110 | 14 | E |
1111 | 15 | F |
\