The correct answer is A. 10011012.
To convert a hexadecimal number to binary, you can use the following table:
Hexadecimal | Binary
——- | ——–
0 | 0000
1 | 0001
2 | 0010
3 | 0011
4 | 0100
5 | 0101
6 | 0110
7 | 0111
8 | 1000
9 | 1001
A | 1010
B | 1011
C | 1100
D | 1101
E | 1110
F | 1111
To convert 4E16 to binary, you would first convert 4 to binary, which is 100. Then, you would convert E to binary, which is 1110. Finally, you would put the two numbers together, starting with the least significant digit, which is 10011012.
Here is a step-by-step solution:
- Convert 4 to binary: 4 = 100
- Convert E to binary: E = 1110
- Put the two numbers together, starting with the least significant digit: 4E16 = 10011012
The other options are incorrect because they do not represent the correct binary value for 4E16.