Difficulty: Easy
Correct Answer: 1C9
Explanation:
Introduction / Context:
Converting from decimal to hexadecimal can be done by repeated division by 16, recording remainders as hex digits (0–9, A–F).
Given Data / Assumptions:
Concept / Approach:
Use successive division by 16 and collect remainders from last to first to form the hex representation.
Step-by-Step Solution:
Verification / Alternative check:
Compute back: 1*16^2 + C(12)*16 + 9 = 256 + 192 + 9 = 457.
Why Other Options Are Wrong:
Common Pitfalls:
Writing remainders in the wrong order or misreading C as 11 instead of 12.
Final Answer:
1C9
Discussion & Comments