Difficulty: Easy
Correct Answer: 5
Explanation:
Introduction / Context:
This is a capacity and batching problem. We convert “dozens” to units, find the number of toys per box, then compute toys per tempo and finally the number of tempos required for the total. Careful stepwise conversion prevents miscounts.
Given Data / Assumptions:
Concept / Approach:
First, compute toys per tempo: (toys/box) * (boxes/tempo). Then, divide the overall requirement by per-tempo capacity. Since the numbers divide cleanly, no rounding ambiguity arises.
Step-by-Step Solution:
Verification / Alternative check:
Back-check: 5 tempos * 5880 toys/tempo = 29,400 toys, matching the target exactly, confirming the division was exact and no extra tempo is necessary.
Why Other Options Are Wrong:
Common Pitfalls:
Using 5 toys = 1 dozen (reversing the definition) or forgetting to multiply by 98 boxes per tempo. Always convert dozens properly (1 dozen = 12).
Final Answer:
5
Discussion & Comments