CBSE Class 11 Computer Science
Question 78 of 91
Data Representation — Question 9
Back to all questions 9
Question Question 9
Convert the following binary numbers to hexadecimal:
(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