Difficulty: Easy
Correct Answer: 431₈
Explanation:
Introduction / Context:
Converting from decimal to octal is done by repeated division by 8 and collecting remainders. Reading the remainders backward gives the octal digits.
Given Data / Assumptions:
Concept / Approach:
Use integer division by 8. Each remainder is a base-8 digit from 0 to 7. Stop when the quotient reaches 0, then write remainders from last to first.
Step-by-Step Solution:
Verification / Alternative check:
Convert back: 48^2 + 38 + 1 = 256 + 24 + 1 = 281, confirming correctness.
Why Other Options Are Wrong:
Common Pitfalls:
Writing the remainders in forward order instead of reverse, or using base-10 powers instead of base-8.
Final Answer:
431₈
Discussion & Comments