Difficulty: Easy
Correct Answer: 15₈
Explanation:
Introduction / Context:Base conversion is a core digital logic skill. This question asks you to convert a decimal value (base 10) to octal (base 8) using repeated division by the target base and reading remainders in reverse order.
Given Data / Assumptions:
Concept / Approach:The standard approach converts from base 10 to base b by repeatedly dividing the number by b and collecting remainders. The octal representation is built by reading the remainders from last to first.
Step-by-Step Solution:
Let N = 13 (base 10), base = 8.Step 1: 13 / 8 = quotient 1, remainder 5.Step 2: 1 / 8 = quotient 0, remainder 1.Read remainders upward (last to first): 1 then 5 → 15 in base 8.Check: 1*8^1 + 5*8^0 = 8 + 5 = 13, correct.Verification / Alternative check:Use place-value back-conversion: 15₈ → 1*8 + 5 = 13 (base 10). Matches the original value, confirming accuracy.
Why Other Options Are Wrong:
Common Pitfalls:Reading remainders in the wrong order, mixing decimal digits as if they were octal digits, or forgetting to stop when the quotient becomes 0.
Final Answer:15₈
Discussion & Comments