Coding and Decoding
Find the rule from the one example, then test it on a second letter before you trust it. Most codes are a shift, a reversal, or a position-sum.
Why this topic matters
If CAT is written as DBU, each letter moved one step forward. Coding questions hide a simple rule like that; your job is to find it and apply it.
Coding appears in almost every reasoning section. Most codes are one of four kinds: shift, reverse, opposite letter, or position number.
The four common codes
Shift: every letter moves the same number of steps (CAT → DBU is +1). The shift can also change per letter (+1, +2, +3 ...).
Reverse: the word is written backwards, sometimes with a shift too.
Opposite: each letter becomes its mirror in the alphabet (A <→ Z, B <→ Y). Pairs always add to 27.
Numbers: letters become their positions (CAT → 3 1 20), or the sum of positions.
- M → N, O → P, T → U: each letter +1.Compare letter by letter.
- FATHER +1 = GBUIFS.
- G (7) → T (20): 7 + 20 = 27. O → L: 15 + 12 = 27.Opposite letters add to 27.
- SILK → HROP.
- C + A + T = 3 + 1 + 20 = 24.Sum of positions.
- D + O + G = 4 + 15 + 7 = 26.
Sentence codes ('Chinese' coding)
You get several sentences and their codes. Words common to two sentences share a common code. Compare sentences in pairs and cross out what matches.
- Sentences 1 and 2 share 'is' and 'blue', and codes 'ta' and 'na'.Common words match common codes.
- Sentence 2's remaining word 'deep' matches its remaining code.
- 'ka'.
Formula summary
Shortcuts and tricks
Sentence code by overlap
Use it when: 'pit na sa' = you are good, 'na ho pit' = are you fine ...
- Words common to two sentences map to codes common to the same two sentences.
- Peel them off one at a time.
- 'coffee' is in sentences 1 and 2; the only code in both is 'ro'.
- 'good' is in 2 and 3; the only code in both is 'ne'.
Before you move on, you should be able to...
- test shift, reverse, opposite and number codes in that order
- use 27 to find opposite letters
- match common words to common codes
Practice questions (7)
Try each one before opening the solution. Or practise them one by one so your score is saved.
easy If COMPUTER is coded DPNQVUFS, how is MOUSE coded?
- Each letter +1.
Answer: NPVTF
easy If CAT = 24 (sum of positions), DOG = ?
- 4 + 15 + 7.
Answer: 26
easy If MANGO is coded OCPIQ, how is APPLE coded?
- +2 each.
Answer: CRRNG
medium If GREEN is coded TIVVM (reverse alphabet), how is BLUE coded?
- B → Y, L → O, U → F, E → V.
Answer: YOFV
medium If 'water' is called 'air', 'air' is called 'fire', and 'fire' is called 'sky', what do fish live in?
- Fish live in water, and water is called 'air'.
Answer: air
medium If TEACHER is coded VGCEJGT, how is STUDENT coded?
- +2 each.
Answer: UVWFGPV
hard If FRIEND is coded HUMJTK, how is CANDLE coded?
- F+2, R+3, I+4, E+5, N+6, D+7.
- Apply the same shifts to CANDLE.
Answer: EDRIRL
Class plan (2 hours, for trainers)
A tested order for teaching this topic in one 2-hour session. Present mode follows the same order.
| 10 min | Warm-up: letter positions with EJOTY. |
| 30 min | Shift, reverse, opposite, numbers: one example each, then mixed. |
| 20 min | Sentence codes. |
| 15 min | Substitution codes ('sky is called water'). |
| 40 min | Practice set. |
| 5 min | Recap. |