Difficulty: Easy
Correct Answer: 60
Explanation:
Introduction / Context:
Octal (base 8) is often used as a compact representation of binary. Converting octal to decimal reinforces understanding of positional weights based on powers of 8.
Given Data / Assumptions:
Concept / Approach:
Expand using positional weights: the left digit is multiplied by 8^1 and the right digit by 8^0, then sum the results to get the decimal value.
Step-by-Step Solution:
Verification / Alternative check:
Convert 74₈ to binary: 7 → 111, 4 → 100; combined 111100₂ = 60₁₀, confirming the same result.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
60
Discussion & Comments