Result
Binary number is a base-2 number system that concerns with only two digits 0s and 1s. Computer works according to binary numbers, meaning computer storing and processing data and calculating tasks by using 0s and 1s. Binary is the primary language for the computer. We generally deals with the decimal system in our daily life.
Conversion process is very simple and easy:
$$1 * 2 = 2$$
$$(2 + 1) * 2 = 6$$
$$(6 + 1) * 2 = 14$$
$$(14 + 0) * 2 = 28$$
$$(28 + 0) * 2 $$
$$ = 56 56 + 1 = 57 $$
Binary | Decimal |
---|---|
0 | 0 |
1 | 1 |
10 | 2 |
11 | 3 |
100 | 4 |
101 | 5 |
110 | 6 |
111 | 7 |
1000 | 8 |
1001 | 9 |
1010 | 10 |
binary to hex conversion process is very simple and easy:
Binary | HexaDecimal |
---|---|
0 | 0 |
1 | 1 |
10 | 2 |
11 | 3 |
100 | 4 |
101 | 5 |
110 | 6 |
111 | 7 |
1000 | 8 |
1001 | 9 |
1010 | A |
1011 | B |
1100 | C |
1101 | D |
1110 | E |
1111 | F |
Keep in touch
Contact Us© Copyright 2025 by calculatored.com