Loading practice questions
A computer science teacher writes the binary number 1101 and the hexadecimal number A5 on the board and asks students to add them.
Question: What is the decimal value of the sum of the binary number 1101 and the hexadecimal number A5?
Correct Answer: D — 178
Explanation:
The correct answer is: option 4 Key Points Explanation: Convert the binary number and the hexadecimal number to decimal: 11012 = 1×2³ + 1×2² + 0×2¹ + 1×2Ⱐ= 8 + 4 + 0 + 1 = 13 A516 = 10×16¹ + 5×16Ⱐ= 160 + 5 = 165 Sum: 13 + 165 = 178 Therefore the correct decimal value of the sum is 178,