Difficulty: Medium
Correct Answer: RNMQ
Explanation:
Introduction / Context:Four-letter sequences can encode a three-step signature in terms of alphabet index differences. When most items share a fixed signature, the single deviation is the odd one out.
Given Data / Assumptions:
Concept / Approach:Convert letters to indices and compute successive differences. The outlier will violate the consistent “−3, −1, +3” pattern used by the others.
Step-by-Step Solution:
1) Compute the three differences for each option.2) Compare with the template (−3, −1, +3).3) Only RNMQ yields (−4, −1, +4), so it is odd.Verification / Alternative check:Reverse-direction checks preserve the mismatch, confirming RNMQ as the deviation.
Why Other Options Are Wrong:They conform exactly to the intended signature.
Common Pitfalls:Do not mix up sign and magnitude; both must match the signature.
Final Answer:RNMQ
Discussion & Comments