Difficulty: Easy
Correct Answer: 1841
Explanation:
Introduction / Context:
Hexadecimal (base 16) is compact for representing binary values because each hex digit corresponds to exactly four binary bits. Converting hex to decimal uses the same positional method as any base conversion: multiply each digit by its power of 16 and sum the results.
Given Data / Assumptions:
Concept / Approach:
Apply positional notation: value = d216^2 + d116^1 + d016^0. This yields an exact integer result for any hex numeral.
Step-by-Step Solution:
Verification / Alternative check:
Convert to binary nibbles first: 7→0111, 3→0011, 1→0001 → 0111 0011 0001₂, then evaluate as binary to decimal to confirm 1841.
Why Other Options Are Wrong:
Common Pitfalls:
Reversing the order of remainders, confusing hex digits with decimal digits, or miscomputing 16^2.
Final Answer:
1841
Discussion & Comments