CSAT Solved Papers/ 2023/Q37
2023 CSAT — Q37
If ‘ZERO’ is written as ‘CHUR’, then how is ‘PLAYER’ written?
Worked rationale
Find the shift from the anchor, letter by letter (positions ), wrapping mod :
- : (wrap )
- :
- :
- :
The rule is a shift on every letter. Apply to PLAYER:
- (wrap )
So PLAYER SODBHU.
Answer: (d) SODBHU.
Why the other options miss
- A an arithmetic slip: shifts some letters by instead of (, ), off by one in the shift amount.
- B an arithmetic slip: correct through , then mis-shifts () and () in the tail.
- C counted one too few: gets five letters right but shifts the final () instead of ().
Specialist insight
Confirm the shift on all four anchor letters before encoding — a Caesar cipher is only safe once the constant is verified everywhere (one letter could hide a different rule). The two wrap-arounds are the mark-makers: and both cross the boundary. Compute positions and add mod ; 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
Caesar shift (verify , wraps); PLAYER SODBHU (d).