Difficulty: Medium
Correct Answer: bce
Explanation:
Introduction / Context:
This item mixes symbolic digit naming with arithmetic. Each letter represents a digit via a fixed mapping. We must first translate letters to numbers, compute the result using standard arithmetic, then translate the final number back into letters.
Given Data / Assumptions:
Concept / Approach:
Translate, compute with ordinary arithmetic (respecting precedence with parentheses), then re-encode each digit of the final number using the same mapping.
Step-by-Step Solution:
1) dc = 32, f = 5, bf = 15, d = 3.2) Compute 32 × 5 = 160.3) Compute (15 − 3) × 3 = 12 × 3 = 36.4) Final: 160 − 36 = 124.5) Re-encode 1→b, 2→c, 4→e → "bce".
Verification / Alternative check:
Reverse-encoding "bce" → 1,2,4 to confirm the numeric result 124.
Why Other Options Are Wrong:
Common Pitfalls:
Treating dc or bf as products instead of concatenations, or forgetting the parentheses.
Final Answer:
bce
Discussion & Comments