CSAT Solved Papers/ 2023/Q37

2023 CSAT — Q37

Quant Logical & quantitative reasoning 2.5 marks Easy

If ‘ZERO’ is written as ‘CHUR’, then how is ‘PLAYER’ written?

  1. A SOCAGT
  2. B SODBGT
  3. C SODBHT
  4. D SODBHU Answer

Worked rationale

Find the shift from the anchor, letter by letter (positions A=1,,Z=26A = 1, \dots, Z = 26), wrapping mod 2626:

  • Z(26)C(3)Z(26) \to C(3): +3+3 (wrap 2612326 \to 1 \to 2 \to 3)
  • E(5)H(8)E(5) \to H(8): +3+3
  • R(18)U(21)R(18) \to U(21): +3+3
  • O(15)R(18)O(15) \to R(18): +3+3

The rule is a +3+3 shift on every letter. Apply to PLAYER:

  • P(16)S(19)P(16) \to S(19)
  • L(12)O(15)L(12) \to O(15)
  • A(1)D(4)A(1) \to D(4)
  • Y(25)BY(25) \to B (wrap 252612=B25 \to 26 \to 1 \to 2 = B)
  • E(5)H(8)E(5) \to H(8)
  • R(18)U(21)R(18) \to U(21)

So PLAYER \to SODBHU.

Answer: (d) SODBHU.

Why the other options miss

  • A
    an arithmetic slip: shifts some letters by +2+2 instead of +3+3 (ACA \to C, YAY \to A), off by one in the shift amount.
  • B
    an arithmetic slip: correct through BB, then mis-shifts EGE \to G (+2+2) and RTR \to T (+2+2) in the tail.
  • C
    counted one too few: gets five letters right but shifts the final RTR \to T (+2+2) instead of RUR \to U (+3+3).

Specialist insight

Confirm the shift on all four anchor letters before encoding — a Caesar cipher is only safe once the constant +3+3 is verified everywhere (one letter could hide a different rule). The two wrap-arounds are the mark-makers: ZCZ \to C and YBY \to B both cross the ZAZ \to A boundary. Compute positions and add 33 mod 2626; the distractors are all “right shift, wrong tail” near-misses targeting a slip on the last one or two letters.

The trap, in one line

+3+3 Caesar shift (verify ZCZ\to C, YBY\to B wraps); PLAYER \to SODBHU == (d).

← All 2023 CSAT questions