Difficulty: Easy
Correct Answer: 7D₁₆
Explanation:
Introduction / Context:
Hexadecimal conversion by repeated division is a standard skill in digital systems and computer architecture.
Given Data / Assumptions:
Concept / Approach:
Divide by 16, record remainders as hex digits, and read from last to first to form the hexadecimal value.
Step-by-Step Solution:
Verification / Alternative check:
Back-convert: 7*16 + 13 = 112 + 13 = 125.
Why Other Options Are Wrong:
Common Pitfalls:
Reversing the order of remainders or misvaluing D as 11 instead of 13.
Final Answer:
7D₁₆
Discussion & Comments