Difficulty: Easy
Correct Answer: 4A16
Explanation:
Introduction / Context:
Decimal to hexadecimal conversion is frequent when interpreting addresses, constants, or color codes. The process uses repeated division by 16 and collecting remainders, or a quick decomposition into 16s and units if the number is small.
Given Data / Assumptions:
Concept / Approach:
Compute the quotient and remainder when dividing by 16. The quotient gives the high hex digit and the remainder gives the low hex digit. Alternatively, write 74 = 416 + 10 and map 10 to A directly.
Step-by-Step Solution:
1) Perform division: 74 / 16 = 4 remainder 10.2) Map remainder 10 to hex A.3) High digit is 4 and low digit is A.4) Combine to get 4A base 16, written as 4A16.
Verification / Alternative check:
Convert back: 4A16 = 416 + A = 64 + 10 = 74 decimal. The round trip confirms the value.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting that A denotes 10, misreading the remainder, or reversing the order of quotient and remainder when forming the hex digits.
Final Answer:
4A16
Discussion & Comments