Letter Coding
In letter coding each letter moves by a fixed step. Line the plain word above the code and read the gap on the first letter; confirm it on the rest. A '+1' code turns CAT into DBU. Some codes reverse the word — always check both direction and order.
The alphabet number line
Almost every coding question is solved by writing each letter's position. Keep this strip in your head:
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Decoding toolkit
| Position values | A=1, B=2, … Z=26 |
|---|---|
| Forward shift | new = old + k (wrap Z→A) |
| Backward shift | new = old − k (wrap A→Z) |
| Opposite letter | 27 − position (A↔Z) |
| Reverse coding | write the word backwards |