CBSE Class 11 Computer Science
Question 76 of 91
Data Representation — Question 7
Back to all questions 7
Question Question 7
Convert the following hexadecimal numbers to binary:
(a) 23D
| Hexadecimal Number | Binary Equivalent |
|---|---|
| D (13) | 1101 |
| 3 | 0011 |
| 2 | 0010 |
(23D)16 = (1000111101)2
(b) BC9
| Hexadecimal Number | Binary Equivalent |
|---|---|
| 9 | 1001 |
| C (12) | 1100 |
| B (11) | 1011 |
(BC9)16 = (101111001001)2
(c) 9BC8
| Hexadecimal Number | Binary Equivalent |
|---|---|
| 8 | 1000 |
| C (12) | 1100 |
| B (11) | 1011 |
| 9 | 1001 |
(9BC8)16 = (1001101111001000)2