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