CSAT Solved Papers/ 2021/Q56
2021 CSAT — Q56
In a code language ‘MATHEMATICS’ is written as ‘LBSIDNZUHDR’. How is ‘CHEMISTRY’ written in that code language?
Worked rationale
Compare each letter of MATHEMATICS to its code, using alphabet positions (), and read the shift per position:
| pos | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
|---|---|---|---|---|---|---|---|---|---|---|---|
| plain | M | A | T | H | E | M | A | T | I | C | S |
| code | L | B | S | I | D | N | Z | U | H | D | R |
| shift |
The rule is on odd positions, on even positions (with wrap-around, e.g. position : ). Apply it to CHEMISTRY ( letters):
| pos | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
|---|---|---|---|---|---|---|---|---|---|
| plain | C | H | E | M | I | S | T | R | Y |
| shift | |||||||||
| code | B | I | D | N | H | T | S | S | X |
So CHEMISTRY BIDNHTSSX.
Answer: (b) BIDNHTSSX.
Why the other options miss
- A the parity flipped backwards: flips the parity (uses on odds, on evens) at the start, giving , .
- C an arithmetic slip: correct rule but slips on position ( instead of ), one letter off.
- D the wrong rule applied: applies a uniform shift (all or a Caesar-style constant) instead of the alternating .
Specialist insight
The decode is not a single Caesar shift — the shift alternates with position parity (). Recover it by tabulating plain-vs-code differences before touching the target word; the clean pattern (and the wrap at an odd slot) confirms the rule. Then it’s mechanical, but watch the even slots (: , , , ) where the off-by-one distractor (c) is planted.
Shift is on odd positions, on even; CHEMISTRY BIDNHTSSX (b).