CBSE Class 11 Computer Science
Question 8 of 91
Data Representation — Question 8
Back to all questions 8
Question Question 8
Convert the following hexadecimal numbers to binary :
(a) A6
(b) A07
(c) 7AB4
(d) BE
(e) BC9
(f) 9BC8
(a) A6
| Hexadecimal Number | Binary Equivalent |
|---|---|
| 6 | 0110 |
| A (10) | 1010 |
(A6)16 = (10100110)2
(b) A07
| Hexadecimal Number | Binary Equivalent |
|---|---|
| 7 | 0111 |
| 0 | 0000 |
| A (10) | 1010 |
(A07)16 = (101000000111)2
(c) 7AB4
| Hexadecimal Number | Binary Equivalent |
|---|---|
| 4 | 0100 |
| B (11) | 1011 |
| A (10) | 1010 |
| 7 | 0111 |
(7AB4)16 = (111101010110100)2
(d) BE
| Hexadecimal Number | Binary Equivalent |
|---|---|
| E (14) | 1110 |
| B (11) | 1011 |
(BE)16 = (10111110)2
(e) BC9
| Hexadecimal Number | Binary Equivalent |
|---|---|
| 9 | 1001 |
| C (12) | 1100 |
| B (11) | 1011 |
(BC9)16 = (101111001001)2
(f) 9BC8
| Hexadecimal Number | Binary Equivalent |
|---|---|
| 8 | 1000 |
| C (12) | 1100 |
| B (11) | 1011 |
| 9 | 1001 |
(9BC8)16 = (1001101111001000)2