Difficulty: Medium
Correct Answer: S O K L
Explanation:
Introduction / Context:
Multi-letter sequences often use constant backward jumps. Anomalies typically flip direction or alter the step size at the end.
Given Data / Assumptions:
Concept / Approach:
Check the direction of each step. Three sequences maintain backward movement throughout; one reverses to a forward step at the end.
Step-by-Step Solution:
Compute successive differences for each sequence.Flag the single case with a positive final step.
Verification / Alternative check:
Even if some sequences change the magnitude (−3 vs −4), only one changes the sign from negative to positive at the end.
Why Other Options Are Wrong:
T P L I, R N J F, Y U Q M: Each maintains backward-only movement across all steps.
Common Pitfalls:
Counting inclusively or misreading letter positions near the ends of the alphabet.
Final Answer:
S O K L
Discussion & Comments