Difficulty: Medium
Correct Answer: 202
Explanation:
Introduction / Context:
Many wrong-number questions rely on successive differences forming a clean pattern. Here, the cleanest structure is differences descending by 11 each step, a hallmark of exam puzzle design.
Given Data / Assumptions:
Concept / Approach:
Compute consecutive differences and look for a simple descending pattern, especially multiples of a constant such as 11.
Step-by-Step Solution:
325 → 259 = −66259 → 202 = −57 (suspect)202 → 160 = −42160 → 127 = −33127 → 105 = −22105 → 94 = −11All differences except −57 are multiples of 11: −66, −42, −33, −22, −11.If we replace 202 with 204, the differences become −66, −55, −44, −33, −22, −11, which is a perfect arithmetic ladder descending by 11 each time.
Verification / Alternative check:
Only the transition 259 → 202 breaks the “descending multiples of 11” rule. Adjusting that term to 204 aligns the entire sequence; therefore, 202 is the wrong entry.
Why Other Options Are Wrong:
Common Pitfalls:
Stopping after one irregular step without testing whether a single correction yields a perfectly consistent pattern across all differences.
Final Answer:
202
Discussion & Comments