2025 CSAT — Q8
What comes at and respectively in the following sequence?
January, January, December, October, , March, October, , September
Worked rationale
Number the months – (Jan , …, Dec ) and read the sequence as a running back-step that grows by one each time, cycling mod .
| Position | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
|---|---|---|---|---|---|---|---|---|---|
| Month | Jan | Jan | Dec | Oct | Mar | Oct | Sep | ||
| Value | 1 | 1 | 12 | 10 | ? | 3 | 10 | ? | 9 |
| Step | — |
Apply the steps (subtract, wrapping mod so ):
- (position ) July.
- (position ) April.
Every given term is reproduced (Mar ✓, Oct ✓ at position via , Sep ✓), so the rule is confirmed.
Answer: (b) July, April.
Why the other options miss
- A an arithmetic slip: gets July correctly but mis-steps the back-step (), landing on May () instead of April ().
- C off by one: uses back-steps (or starts the step count at ), shifting both answers one month early to June/May.
- D off by one: correct April but an off-by-one on ‘s step gives June instead of July.
Specialist insight
The trap is assuming a constant step (e.g. always ) — that reproduces the first few terms then fails. The governing rule is a cumulative back-step with mod- wrap, which is verified only by checking that the known later terms (March, October, September) also fall out. Always validate a guessed rule against every fixed term before committing; here the wrap (October at position ) is the checkpoint that distinguishes the right pattern from a near-miss.
The back-step is cumulative ( mod ), not constant: (July), (April).