Computer Science
Convert the following binary numbers to hexadecimal:
(a) 1010110110111
(b) 10110111011011
(c) 0110101100
Number System
39 Likes
Answer
(a) 1010110110111
Grouping in bits of 4:
Binary Number | Equivalent Hexadecimal |
---|---|
0111 | 7 |
1011 | B (11) |
0101 | 5 |
0001 | 1 |
Therefore, (1010110110111)2 = (15B7)16
(b) 10110111011011
Grouping in bits of 4:
Binary Number | Equivalent Hexadecimal |
---|---|
1011 | B (11) |
1101 | D (13) |
1101 | D (13) |
0010 | 2 |
Therefore, (10110111011011)2 = (2DDB)16
(c) 0110101100
Grouping in bits of 4:
Binary Number | Equivalent Hexadecimal |
---|---|
1100 | C (12) |
1010 | A (10) |
0001 | 1 |
Therefore, (0110101100)2 = (1AC)16
Answered By
6 Likes
Related Questions
Convert the following hexadecimal numbers to binary:
(a) 23D
(b) BC9
(c) 9BC8
Convert the following octal numbers to decimal:
(a) 257
(b) 3527
(c) 123
(d) 605.12
Convert the following hexadecimal numbers to decimal:
(a) A6
(b) A13B
(c) 3A5
Convert the following binary numbers to hexadecimal:
(a) 10011011101
(b) 1111011101011011
(c) 11010111010111