Difficulty: Medium
Correct Answer: MIDA
Explanation:
Introduction / Context:
This is a classification problem involving 4-letter sequences. The common pattern to look for is a fixed decrement in alphabet positions from one letter to the next within a sequence. We must choose the sequence that fails to maintain that constant step size.
Given Data / Assumptions:
Concept / Approach:
Compute positional differences for each jump inside a sequence. If all three jumps are equal (e.g., −3, −3, −3), the sequence is consistent. Any deviation marks the odd one out.
Step-by-Step Solution:
Verification / Alternative check:
Visualize as numerical arrays and subtract; only MIDA has unequal decrements (−4, −5, −3).
Why Other Options Are Wrong:
Common Pitfalls:
Confusing direction (adding vs subtracting) or missing the negative sign. Always compute from left to right consistently.
Final Answer:
MIDA
Discussion & Comments