Difficulty: Medium
Correct Answer: IM
Explanation:
Introduction / Context:Alphabet-pattern classification often uses fixed positional jumps. Here, test whether the right letter is exactly three steps ahead of the left one (A=1, B=2, …, Z=26). Three pairs obey the +3 rule; one does not. The calculation is light and intended to reward accuracy over guesswork.
Given Data / Assumptions:
Concept / Approach:Convert letters to positions and compute the delta. Select the pair that does not yield +3. This is a standard technique for letter-series items and is quick to execute once the mapping A=1…Z=26 is internalized.
Step-by-Step Solution:
Map each left–right pair to numbers.Compute increments; verify +3 for RU, BE, FI.Detect +4 for IM → odd one out.Verification / Alternative check:Rebuild by starting letter: add three letters forward; if the result mismatches the given right letter, that pair is the outlier.
Why Other Options Are Wrong:
RU, BE, FI adhere exactly to the +3 rule.Common Pitfalls:Off-by-one counting (forgetting to exclude the starting letter when stepping). Always count moves, not letters listed.
Final Answer:IM
Discussion & Comments