CSAT Solved Papers/ 2025/Q8

2025 CSAT — Q8

Quant Logical & quantitative reasoning 2.5 marks Medium

What comes at XX and YY respectively in the following sequence?

January, January, December, October, XX, March, October, YY, September

  1. A July, May
  2. B July, April Answer
  3. C June, May
  4. D June, April

Worked rationale

Number the months 111212 (Jan =1=1, …, Dec =12=12) and read the sequence as a running back-step that grows by one each time, cycling mod 1212.

Position123456789
MonthJanJanDecOctXXMarOctYYSep
Value111210?310?9
Step0-01-12-23-34-45-56-67-7

Apply the steps (subtract, wrapping mod 1212 so 0120 \to 12):

10111221037435106479.1 \xrightarrow{-0} 1 \xrightarrow{-1} 12 \xrightarrow{-2} 10 \xrightarrow{-3} 7 \xrightarrow{-4} 3 \xrightarrow{-5} 10 \xrightarrow{-6} 4 \xrightarrow{-7} 9.
  • XX (position 55) =103=7== 10 - 3 = 7 = July.
  • YY (position 88) =106=4== 10 - 6 = 4 = April.

Every given term is reproduced (Mar =3=3 ✓, Oct =10=10 ✓ at position 77 via 35=2103-5 = -2 \equiv 10, Sep =9=9 ✓), so the rule is confirmed.

Answer: (b) July, April.

Why the other options miss

  • A
    an arithmetic slip: gets X=X= July correctly but mis-steps the YY back-step (6-6), landing on May (55) instead of April (44).
  • C
    off by one: uses back-steps 4,7-4,-7 (or starts the step count at 1-1), shifting both answers one month early to June/May.
  • D
    off by one: correct Y=Y = April but an off-by-one on XX‘s step gives June instead of July.

Specialist insight

The trap is assuming a constant step (e.g. always 2-2) — that reproduces the first few terms then fails. The governing rule is a cumulative back-step 0,1,2,3,-0,-1,-2,-3,\dots with mod-1212 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 3103 \to 10 (October at position 77) is the checkpoint that distinguishes the right pattern from a near-miss.

The trap, in one line

The back-step is cumulative (0,1,2,-0,-1,-2,\dots mod 1212), not constant: X=103=7X = 10-3 = 7 (July), Y=106=4Y = 10-6 = 4 (April).

← All 2025 CSAT questions