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:
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