Difficulty: Easy
Correct Answer: Only M
Explanation:
Introduction / Context:
Classic ordering problems present pairwise comparisons. We must use “neither as tall as M nor as short as O” and the relationships involving N to deduce the full order and identify the tallest.
Given Data / Assumptions:
Concept / Approach:
Chain the inequalities. From O < N < P and P < M, we get O < N < P < M. The tallest is the maximum in this chain.
Step-by-Step Solution:
Verification / Alternative check:
Try to make P tallest: impossible because P < M. Try to make N tallest: impossible because N < P. So only M can be tallest.
Why Other Options Are Wrong:
Common Pitfalls:
Interpreting “neither as tall as M nor as short as O” as “between M and O” but forgetting the separate constraint on N. Always write inequalities explicitly.
Final Answer:
Only M
Discussion & Comments