Difficulty: Medium
Correct Answer: R, R
Explanation:
Introduction / Context:This series alternates between two logical progressions: one stream climbs forward through the alphabet by a fixed step, and the other stream moves backward by a fixed step. Recognizing and extending both simultaneously yields the two missing letters.
Given Data / Assumptions:
Concept / Approach:Separate odd- and even-position letters. Compute their numeric positions and identify a constant step for each stream. Continue Stream B for the 10th letter and Stream A for the 11th letter.
Step-by-Step Solution:
Stream A (odd positions): C(3), F(6), I(9), L(12), O(15). Rule: +3 each step. Next odd letter = 15 + 3 = 18 → R.Stream B (even positions): Z(26), X(24), V(22), T(20), ?. Rule: −2 each step. Next even letter = 20 − 2 = 18 → R.Therefore, 10th letter (even) = R, 11th letter (odd) = R.Verification / Alternative check: Why Other Options Are Wrong: Common Pitfalls:Attempting to find one rule for all positions instead of separating into odd/even streams with distinct step sizes. Final Answer:R, R
Discussion & Comments