A coding-decoding question gives you a hidden pattern that converts words or letters into a code, and asks you to identify that pattern and apply it to decode or encode a new word.
These questions test pattern recognition — typically involving shifting letters in the alphabet, reversing words, or substituting letters/numbers according to a consistent rule.
If "CAT" is coded as "DBU", how would "DOG" be coded?
Solution: Each letter shifts forward by one in the alphabet (C→D, A→B, T→U). Applying the same shift to DOG: D→E, O→P, G→H, giving "EPH".
The key strategy is testing one letter or word at a time against the given example to isolate exactly what transformation rule is being applied, before applying it to the new word.
Last reviewed: September 2026