Difficulty: Easy
Correct Answer: L
Explanation:
Introduction / Context:
Here the sequence alternates between two simple arithmetic rules on alphabet positions. By pulling apart odd and even terms, we can extend each subsequence independently and then recombine to get the next letter.
Given Data / Assumptions:
Concept / Approach:
Compute positions of letters in odd slots (1,3,5,…) and even slots (2,4,6,…). Identify a constant increment/decrement in each stream and extend the appropriate one for the next term (here, the 6th term).
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Mixing the two interleaved sequences, or trying to apply one rule to the entire list instead of splitting by parity of positions.
Final Answer:
L
Discussion & Comments