Computer Science
Convert the following binary numbers to hexadecimal:
(a) 10011011101
(b) 1111011101011011
(c) 11010111010111
Number System
47 Likes
Answer
(a) 10011011101
Grouping in bits of 4:
Binary Number | Equivalent Hexadecimal |
---|---|
1101 | D (13) |
1101 | D (13) |
0100 | 4 |
Therefore, (10011011101)2 = (4DD)16
(b) 1111011101011011
Grouping in bits of 4:
Binary Number | Equivalent Hexadecimal |
---|---|
1011 | B (11) |
0101 | 5 |
0111 | 7 |
1111 | F (15) |
Therefore, (1111011101011011)2 = (F75B)16
(c) 11010111010111
Grouping in bits of 4:
Binary Number | Equivalent Hexadecimal |
---|---|
0111 | 7 |
1101 | D (13) |
0101 | 5 |
0011 | 3 |
Therefore, (11010111010111)2 = (35D7)16
Answered By
8 Likes
Related Questions
Convert the following binary numbers to hexadecimal:
(a) 1010110110111
(b) 10110111011011
(c) 0110101100
Convert the following hexadecimal numbers to binary:
(a) 23D
(b) BC9
(c) 9BC8
Convert the following hexadecimal numbers to binary:
(a) A6
(b) A07
(c) 7AB4
Convert the following octal numbers to decimal:
(a) 257
(b) 3527
(c) 123
(d) 605.12