Difficulty: Easy
Correct Answer: 1911
Explanation:
Introduction / Context:
Hexadecimal expands by powers of 16. Rewriting multi-digit hex numbers into decimal clarifies positional weighting and strengthens mental math for address offsets and constants in code.
Given Data / Assumptions:
Concept / Approach:
Apply place values: value = d216^2 + d116^1 + d016^0. With d2=d1=d0=7, the computation is straightforward.
Step-by-Step Solution:
Verification / Alternative check:
Convert to binary: 7 → 0111, so 777₁₆ = 0111 0111 0111₂. Evaluate in decimal: (4+2+1)16^2 + (4+2+1)16 + (4+2+1) = 7256 + 716 + 7, same result 1911₁₀.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
1911
Discussion & Comments