Difficulty: Easy
Correct Answer: 53
Explanation:
Introduction / Context:
Map each code to its arithmetic operator and compute. Be careful to resolve multiplication and division before addition and subtraction.
Given Data / Assumptions:
Concept / Approach:
Compute × and ÷ from left to right, then apply + and −.
Step-by-Step Solution:
Verification / Alternative check:
You can group the first two operations: (18 × 12) ÷ 4 = 216 ÷ 4 = 54; then adjust with +5 and −6.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
53
Discussion & Comments