Coding Decoding Questions Placement
Coding Decoding Questions for Placement Exams
Last Updated: March 2026
Introduction to Coding Decoding
Coding-Decoding is a logical reasoning topic that tests your ability to identify patterns and decode encrypted messages. This topic is essential for placement exams at companies like TCS, Infosys, Wipro, Cognizant, Accenture, Amazon, and Microsoft, as well as sarkari exams including SSC CGL, Bank PO, Railway, and UPSC CSAT.
Why Coding-Decoding is Important:
- Tests pattern recognition and logical thinking
- Evaluates ability to work with abstract rules
- No prior knowledge required - pure reasoning skill
- Frequently appears in reasoning sections (3-5 questions)
- Foundation for cryptography and data security concepts
Important Coding Patterns and Shortcuts
Common Coding Types
| Type | Description | Example |
|---|---|---|
| Letter Shifting | Each letter moved by fixed positions | A→C, B→D (shift +2) |
| Reverse Coding | Word written backwards | HELLO → OLLEH |
| Position Sum | Sum of letter positions | A(1)+B(2) = 3 → C |
| Letter Number | Letters replaced by numbers | A→1, B→2, C→3 |
| Vowel/Consonant | Different rules for vowels/consonants | Vowel +1, Consonant -1 |
| Word Patterns | First/last letters, middle letters | COLD → D (last letter +1) |
| Mixed Coding | Combination of multiple patterns | Shift + Reverse |
Letter Position Reference
A=1 B=2 C=3 D=4 E=5 F=6 G=7 H=8 I=9 J=10 K=11 L=12 M=13
N=14 O=15 P=16 Q=17 R=18 S=19 T=20 U=21 V=22 W=23 X=24 Y=25 Z=26
Reverse position: A=26, B=25, C=24... (27 - position)
Opposite Letters (A-Z pairs)
| A | B | C | D | E | F | G | H | I | J | K | L | M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Z | Y | X | W | V | U | T | S | R | Q | P | O | N |
Memory Trick: A+Z = 27, B+Y = 27, C+X = 27... (Sum = 27)
Shortcut Formulas
-
Quick Letter Position:
- E = 5, J = 10, O = 15, T = 20, Y = 25 (remember these milestones)
- For S: T is 20, so S = 19
- For W: Y is 25, so W = 23
-
Reverse Position:
- Position from end = 27 - Position from start
- Example: C (position 3) → 27-3 = 24 → X
-
Pattern Detection:
- Check if code is alphabetical/reverse alphabetical
- Check if sum of positions equals a pattern
- Check first letter, last letter, middle letters separately
- Check letter count of the word
-
Common Patterns:
- +1, +2, +3 pattern: CAT → DBU (+1 each)
- -1, -2, -3 pattern: DOG → CME (-1 each)
- Cross pattern: First+1, Last-1: HELLO → IELLH
Practice Questions
Level 1: Easy
Question 1: Simple Shift If TEACHER is coded as VGCEJGT, how is STUDENT coded?
<details> <summary>Solution</summary>Analyzing TEACHER → VGCEJGT: T(20) → V(22): +2 E(5) → G(7): +2 A(1) → C(3): +2 C(3) → E(5): +2 H(8) → J(10): +2 E(5) → G(7): +2 R(18) → T(20): +2
Pattern: Each letter +2
STUDENT: S(19) → U(21) T(20) → V(22) U(21) → W(23) D(4) → F(6) E(5) → G(7) N(14) → P(16) T(20) → V(22)
</details>Question 2: Reverse Coding If FRIEND is coded as DNEIRF, what is the code for ENEMY?
<details> <summary>Solution</summary>FRIEND → DNEIRF is simply the word reversed.
ENEMY reversed: Y M E N E
</details>Question 3: Position Coding In a certain code, A=1, B=2, C=3, and so on. How is BAD coded?
<details> <summary>Solution</summary>B = 2 A = 1 D = 4
</details>Question 4: Fixed Position Pattern If DAY is coded as 4-1-25, how is NIGHT coded?
<details> <summary>Solution</summary>Pattern: Letter positions in alphabet D=4, A=1, Y=25
NIGHT: N=14, I=9, G=7, H=8, T=20
</details>Question 5: Opposite Letters If LIGHT is coded as ORTSG (using opposite letters), how is DARK coded?
<details> <summary>Solution</summary>Opposite letter pairs sum to 27: L(12) ↔ O(15): 12+15=27 ✓ I(9) ↔ R(18): 9+18=27 ✓ G(7) ↔ T(20): 7+20=27 ✓ H(8) ↔ S(19): 8+19=27 ✓ T(20) ↔ G(7): 20+7=27 ✓
DARK: D(4) → W(23) A(1) → Z(26) R(18) → I(9) K(11) → P(16)
</details>Question 6: Last Letter Pattern In a code, CAT is coded as T, DOG is coded as G, FISH is coded as H. How is BIRD coded?
<details> <summary>Solution</summary>Pattern: Last letter of the word CAT → T DOG → G FISH → H
BIRD → D
</details>Question 7: First + Last If COLD is coded as CD, WARM as WM, what is the code for HOT?
<details> <summary>Solution</summary>COLD: First C + Last D = CD WARM: First W + Last M = WM
HOT: First H + Last T = HT
</details>Question 8: Letter Count Code If APPLE is coded as 5, MANGO as 5, what is BANANA coded as?
<details> <summary>Solution</summary>Pattern: Number of letters APPLE has 5 letters MANGO has 5 letters
BANANA has 6 letters
</details>Question 9: Vowel-Consonant Shift If vowels are coded as the next letter and consonants as the previous letter, how is AIM coded?
<details> <summary>Solution</summary>A (vowel) → B I (vowel) → J M (consonant) → L
</details>Question 10: Word Substitution In a certain code, BOOK is coded as PEN, PEN is coded as INK, and INK is coded as BOOK. How is NOTE written in that code?
<details> <summary>Solution</summary>This is a substitution cipher where actual meanings are swapped. But the question asks how NOTE is written - assuming direct letter substitution isn't given.
Actually, this tests understanding of code substitution: If BOOK = PEN, and we need to find NOTE...
Looking at pattern: B→P, O→E, O→N, K→? Or this could be a word-chain puzzle.
Given no direct pattern, if this is a substitution code where each word maps to another: Without the mapping for N, O, T, E, we cannot determine.
Re-reading: This is likely testing if we understand that codes can be arbitrary mappings. But if we look for pattern B-P(16), O-O(15), O-E(5), K-N(14)... no clear pattern.
Most likely: NOTE would be coded as a 4-letter word starting with T (since T→? following some pattern). Given the cyclic nature BOOK→PEN→INK→BOOK: If B=P, O=E, K=N, and P=I, E=N, N=K, N=O, K=B...
This creates: B=P=I=?, O=E=N=?, K=N=K=B
Actually K=N and N=K means K and N swap, but also K=B, so N=B, but B=P... This seems inconsistent.
Standard answer approach: The code for NOTE cannot be determined from given information, OR follows the same substitution pattern if it's a letter-for-letter code.
</details>Level 2: Medium
Question 11: Alternating Shift If LEADER is coded as MKBEFS, how is RESULT coded?
<details> <summary>Solution</summary>LEADER → MKBEFS: L(12)→M(13): +1 E(5)→K(11): +6 A(1)→B(2): +1 D(4)→E(5): +1 E(5)→F(6): +1 R(18)→S(19): +1
Wait, E→K is +6, not following pattern. Let me recheck.
L→M: +1 E→K: +6? That doesn't fit.
Looking again: Maybe it's +1, +6 alternating or some other pattern.
Actually: Could be position-based on vowels/consonants: L(+1)=M, E(+6)=K (E is 5th letter, +6 = 11 = K), A(+1)=B, D(+1)=E, E(+6)=K? No, it's F.
Alternative: Maybe it's +1 for all, but E→K is wrong in my observation. Let me recheck: M-K-B-E-F-S L→M ✓, E→? Should be F for +1, but it's K.
Perhaps the pattern is different. Let's try word position: L(1st letter)→M, E(2nd)→K, A(3rd)→B, D(4th)→E, E(5th)→F, R(6th)→S
1st→+1, 2nd→+6, 3rd→+1, 4th→+1, 5th→+1, 6th→+1
Or: Vowel position matters?
Let's try: The word LEADER has positions. Vowels get +6, consonants get +1? L(consonant)+1=M, E(vowel)+6=K, D(consonant)+1=E, E(vowel)+6=K? But it's F.
Actually re-looking: MKBEFS - maybe I misread the code. L→M(+1), E→B? That's -3 or +23 backwards.
Let me try reverse: S-F-E-B-K-M Maybe: L→S (position from end: 27-12=15=O, not S)
Perhaps it's easier to just apply the same pattern to RESULT: If we can't determine the exact pattern, let's assume +1, +6, +1, +1, +1, +1
RESULT: R(+1)=S E(+6)=K S(+1)=T U(+1)=V L(+1)=M T(+1)=U
</details>Question 12: Cross Pattern Coding If FIRST is coded as HTUUW, how is SECOND coded?
<details> <summary>Solution</summary>FIRST → HTUUW: F(6)→H(8): +2 I(9)→T(20): +11 R(18)→U(21): +3 S(19)→U(21): +2 T(20)→W(23): +3
Pattern: +2, +11, +3, +2, +3 Not obvious. Let's try another approach.
Maybe: Alternating +2, +3? F(+2)=H, I(+11)=T? No.
Try position sums or word-related: FIRST letters: F-I-R-S-T H-T-U-U-W
Maybe first +2, second +(2+9)=11, third +3, fourth +2, fifth +3? SECOND: S(+2)=U E(+11)=P C(+3)=F O(+2)=Q N(+3)=Q D(+?)=?
Actually for D (4th letter of SECOND), following +2: D+2=F
</details>Question 13: Number-Letter Mix If 2-5-1-4 is coded as BEAD, and 3-1-20 as CAT, how is 4-15-7 coded?
<details> <summary>Solution</summary>2=B, 5=E, 1=A, 4=D → BEAD ✓ 3=C, 1=A, 20=T → CAT ✓
4=D, 15=O, 7=G
</details>Question 14: Word as Operation In a certain code, PAINT is coded as 73912 and EXCEL is coded as 59538. How is ACCEPT coded?
<details> <summary>Solution</summary>P=7, A=3, I=9, N=1, T=2 E=5, X=9, C=5, E=5, L=8
So: A=3, C=5, E=5, I=9, L=8, N=1, P=7, T=2, X=9
ACCEPT: A=3, C=5, C=5, E=5, P=7, T=2
</details>Question 15: Sentence Coding In a certain code, '589' means 'good fruit jam', '694' means 'jam is sweet', and '837' means 'very good taste'. Which digit stands for 'good'?
<details> <summary>Solution</summary>589: good fruit jam 694: jam is sweet 837: very good taste
Comparing 589 and 694: common word is 'jam', common digit is 9 So 9 = jam
Comparing 589 and 837: common word is 'good', common digit is 8 So 8 = good
</details>Question 16: Conditional Coding If letters at odd positions in English alphabet are coded as +1 and even positions as -1, how is HELLO coded?
<details> <summary>Solution</summary>H(8, even) → G(7): -1 E(5, odd) → F(6): +1 L(12, even) → K(11): -1 L(12, even) → K(11): -1 O(15, odd) → P(16): +1
</details>Question 17: Sum Pattern If AIR is coded as 9 (1+9+18=28, 2+8=10, 1+0=1... no wait 28→10→1?)
Actually if AIR = 9, let's check: A=1, I=9, R=18. Sum = 28. 2+8=10. 1+0=1? But answer is 9.
Try product: 1×9×18 = 162. 1+6+2=9 ✓
How is SKY coded? S=19, K=11, Y=25 Product: 19×11×25 = 5225 5+2+2+5 = 14 1+4 = 5
Or just sum of digits of product: 5+2+2+5 = 14, 1+4 = 5
</details>Question 18: Square Pattern If MAT is coded as 13-1-20 and the code is then squared (169-1-400), how is BAT coded using this system?
<details> <summary>Solution</summary>B=2, A=1, T=20 Squared: 4-1-400
</details>Question 19: Fibonacci Shift If CODE is coded as DPGF (shifting by Fibonacci sequence 1,1,2,3), how is LOCK coded?
<details> <summary>Solution</summary>C(3)+1=D(4) O(15)+1=P(16) D(4)+2=F(6) E(5)+3=H(8)
Pattern: +1, +1, +2, +3 (Fibonacci)
LOCK: L(12)+1=M(13) O(15)+1=P(16) C(3)+2=E(5) K(11)+3=N(14)
</details>Question 20: Complex Substitution In a code, each letter is replaced by the letter that is 3 positions before it in the alphabet, and then the word is reversed. How is WORD coded?
<details> <summary>Solution</summary>Step 1: Shift each letter back by 3 W(23)→T(20) O(15)→L(12) R(18)→O(15) D(4)→A(1)
Result: TLOA
Step 2: Reverse TLOA → AOLT
</details>Level 3: Hard
Question 21: Multi-Step Pattern If MACHINE is coded as 14-15-26-18-15-22-15, how is COMPUTER coded?
<details> <summary>Solution</summary>MACHINE → 14-15-26-18-15-22-15 M(13)→14: +1 A(1)→15: +14 C(3)→26: +23 H(8)→18: +10 I(9)→15: +6 N(14)→22: +8 E(5)→15: +10
Pattern not obvious. Let's try reverse positions: M(13), reverse position = 27-13 = 14 ✓ A(1), reverse = 26? But it's 15.
Try: M=13, 1+3=4? No, it's 14.
Another approach: Position of letter + position in word? M(1st letter, pos 13): 13+1=14 ✓ A(2nd, pos 1): 1+2=3? No, it's 15.
Try: (Position × 2) - something?
Actually let's check: 14, 15, 26, 18, 15, 22, 15 M-A-C-H-I-N-E
Maybe it's based on shape or another property.
Let's try: reverse alphabet position + something Z=1, Y=2, X=3... M=14... 14 matches first! A=26, but second is 15.
Wait: Z(1), Y(2), X(3), W(4), V(5), U(6), T(7), S(8), R(9), Q(10), P(11), O(12), N(13), M(14) ✓ A=26? But code is 15.
Unless it's only consonants or vowels treated differently. M=14 (from Z=1), A=?, C=24? but code is 26.
Let me try: (27-position) for some, position for others? M: 27-13=14 ✓ A: 27-1=26? But code is 15.
Actually 15 = O... A coded as O? Shift of +14? C→26: shift of +23 or reverse A→Z...
Alternative: Letter pairs that sum to 27, then +1? M(13)+N(14)=27, 27-13=14 ✓ A(1)+Z(26)=27, 27-12? No.
Let me try different approach: ASCII or keyboard position?
Actually, looking at 26 for C(3)... 26 could be 2×13, and C is 3rd letter... Or maybe it's completely different: number of closed areas in letters? M=0, A=1... doesn't match.
Let's try: alphabetical position squared, then digit sum or modulo? 13²=169, 1+6+9=16? No, it's 14.
Maybe: (Position mod something) + offset?
Given the complexity, let's focus on finding pattern for COMPUTER: C-O-M-P-U-T-E-R
If M→14 pattern continues... Actually, re-looking: 14, 15, 26, 18, 15, 22, 15 Differences: +1, +11, -8, -3, +7, -7 No clear pattern.
Let me try: position + next letter position? M(13)+A(1)=14 ✓ A(1)+C(3)=4? No, it's 15.
Unless it's × not +?
Given time constraints, let me try: code = (27 - position) for first, then different rule? Or code = letter value in reverse alphabet for consonants, vowels get +14? M=14 ✓, A=1+14=15 ✓, C=24+2=26? No, C is 24 in reverse.
Actually: M=14, A=15, C=26, H=19? No it's 18, I=18? No it's 15, N=13? No it's 22, E=22? No it's 15
Looking at H=18: H is 8th letter, 18 = 8+10 or 27-9... I=15: 9+6 or 27-12... N=22: 14+8 or 27-5... E=15: 5+10 or 27-12...
Pattern emerging: M(13)→14 (+1), A(1)→15 (+14), C(3)→26 (+23), H(8)→18 (+10), I(9)→15 (+6), N(14)→22 (+8), E(5)→15 (+10)
+1, +14, +23, +10, +6, +8, +10... No obvious sequence.
Alternative: Maybe it's (position × position in word) mod 26? M(13×1=13)→14? +1 A(1×2=2)→15? +13
Given the ambiguity, a common pattern for such codes is reverse position: M=14, A=26? But given is 15.
Let me check if 15 could be something else: O is 15, maybe vowels are replaced by their +14 letter? A→O (+14), I→W (+14)? W=23, but code is 15.
I'll go with reverse alphabet position as most likely intended pattern: C=24, O=12, M=14, P=11, U=6, T=7, E=22, R=9
</details>Question 22: Matrix Position In a certain code based on a 5×5 matrix (omitting Q), if A is at (1,1), B at (1,2), and so on, how is BOX coded?
<details> <summary>Solution</summary>5×5 matrix (omitting Q): Row 1: A(1,1) B(1,2) C(1,3) D(1,4) E(1,5) Row 2: F(2,1) G(2,2) H(2,3) I(2,4) J(2,5) Row 3: K(3,1) L(3,2) M(3,3) N(3,4) O(3,5) Row 4: P(4,1) R(4,2) S(4,3) T(4,4) U(4,5) Row 5: V(5,1) W(5,2) X(5,3) Y(5,4) Z(5,5)
BOX: B = (1,2) O = (3,5) X = (5,3)
</details>Question 23: Conditional Shift In a code, each letter is shifted by its position in the word. For the 1st letter: +1, 2nd letter: +2, etc. How is RELATION coded?
<details> <summary>Solution</summary>R(1st): +1 = S E(2nd): +2 = G L(3rd): +3 = O A(4th): +4 = E T(5th): +5 = Y I(6th): +6 = O O(7th): +7 = V N(8th): +8 = V
</details>Question 24: Prime Pattern If the code for SUN is 67 (19+21+14=54, 5+4=9? No, 67...)
Actually: S=19, U=21, N=14. 19+21+14 = 54, not 67.
Try: S(19), 1+9=10; U(21), 2+1=3; N(14), 1+4=5. 10+3+5 = 18? No.
Try: 19+21=40, 40+14=54, 54+13=67? Where does 13 come from?
Try position × something: 19×3 + 21×1 + 14×0.5? No.
Maybe: (Position × 3) + (position in word)? S(19×3)+1 = 58? No.
Actually: S(19), U(21), N(14). 19+21+14 = 54. 67-54 = 13. M is 13th letter. SUN... middle letter is N? Or something else.
Maybe it's 19+21+27 = 67? (27-14=13, N's reverse position) Or 19+21+14+13 = 67? (Adding reverse of N)
Let's check: 19+21+14+13 = 67 ✓
So code = sum of positions + sum of reverse positions? S: 19+8=27, U: 21+6=27, N: 14+13=27. Sum = 81? No.
Just sum of positions + reverse of last letter? 19+21+14+13 = 67? But 13 is reverse of N(14), yes 27-14=13 ✓
How is MOON coded? M=13, O=15, O=15, N=14 Sum = 13+15+15+14 = 57 Reverse of N = 13 Code = 57 + 13 = 70? Or just sum = 57?
Actually, following SUN pattern (which ends in N): Code = sum of all positions + reverse position of last letter
MOON: 13+15+15+14 + 13 = 70
</details>Question 25: Binary Coding If A=00001, B=00010, C=00011 (binary of position), how is CAT coded?
<details> <summary>Solution</summary>C=3 = 00011 A=1 = 00001 T=20 = 10100
</details>Question 26: Keyboard Shift If Q is coded as W (next key on QWERTY keyboard), W is coded as E, and so on, how is TOP coded?
<details> <summary>Solution</summary>Q→W, W→E, E→R, R→T, T→Y, Y→U, U→I, I→O, O→P, P→[
Each letter → next key to the right on same row
T→Y O→P P→[
</details>Question 27: Complex Sentence Decoding If 'sky is blue' is coded as '742', 'blue is good' is coded as '462', and 'good is sky' is coded as '247', what is the code for 'sky'?
<details> <summary>Solution</summary>742: sky is blue 462: blue is good 247: good is sky
Comparing 742 and 462: common word is 'is', common digit is... none directly. 742 has 7,4,2. 462 has 4,6,2. Common: 4,2
So 'is' = 4 or 2.
742 and 247: common words 'sky' and 'is', common digits 7,4 and 2,4,7 → 4,7 If 'is' = 4, then 'sky' = 7 (common remaining: 7 and 7)
Check with 462: 'blue is good' = 462 If 'is'=4, then 'blue' and 'good' are 6 and 2.
In 247: 'good is sky' = 247 'is'=4, 'sky'=7, so 'good'=2 ✓
In 462: 'blue is good', 'is'=4, 'good'=2, so 'blue'=6 ✓
In 742: 'sky is blue', 'sky'=7, 'is'=4, 'blue'=6? But 742 has 2, not 6.
Contradiction! Let me recheck.
Actually 742: 7,4,2. 'sky is blue' with 'blue'=6 would not match.
Let me try 'is' = 2: In 742: 'is'=2, so 'sky' and 'blue' are 7 and 4. In 462: 'is'=2? No, 462 doesn't have 2.
So 'is' ≠ 2.
Let me try 'is' = 4 again but check differently. 742: sky(7) is(4) blue(2)? But we thought blue=6. 462: blue is good = 4,6,2. If 'is'=4, then blue and good are 6 and 2.
So in 742, if 'blue'=2, then 'sky'=7. ✓ 247: good(2) is(4) sky(7) ✓
So: sky=7, is=4, blue=2, good=6.
</details>Question 28: Pattern Completion If ZWQU is the code for SOME, what is the code for NONE?
<details> <summary>Solution</summary>S(19)→Z(26): +7 O(15)→W(23): +8 M(13)→Q(17): +4 E(5)→U(21): +16
Pattern not obvious. Let's try different approach. S→Z: 19→26 = +7 or reverse? 27-19=8, not 26.
Maybe it's based on letter shape or keyboard position?
Try: S is 19th from start, Z is 1st from end? No, Z is last (26th).
Actually: S(19), opposite should be 27-19=8=H, not Z.
Unless it's +7, +8, +4, +16... these are 2³-1, 3²-1, 2², 2⁴... no pattern.
Try: Multiply by something?
Alternative: Look at ZWQU and SOME visually. S-O-M-E, Z-W-Q-U. Each letter is shifted but by what?
S(19), Z(26): difference 7 O(15), W(23): difference 8 M(13), Q(17): difference 4 E(5), U(21): difference 16
Differences: 7, 8, 4, 16 Maybe: 7=8-1, 8=8, 4=8/2, 16=8×2? Or related to word position: 1st letter +7, 2nd +8, 3rd +4, 4th +16?
If we follow +8 pattern for all (approximate): N(14)+8=22=V O(15)+8=23=W N(14)+8=22=V E(5)+8=13=M
</details>Question 29: Mathematical Coding If the code for a word is the sum of the squares of the letter positions, what is the code for ACE?
<details> <summary>Solution</summary>A=1, C=3, E=5
Code = 1² + 3² + 5² = 1 + 9 + 25 = 35
</details>Question 30: Logical Deduction In a certain code language:
- '851' means 'good sweet fruit'
- '783' means 'good red rose'
- '341' means 'rose and fruit'
Which digit stands for 'rose'?
<details> <summary>Solution</summary>851: good sweet fruit 783: good red rose 341: rose and fruit
Comparing 851 and 783: common word 'good', common digit '8' So 8 = good
Comparing 783 and 341: common word 'rose', common digit '3' So 3 = rose
Verify: In 341, 3=rose, so 4 and 1 are 'and' and 'fruit' In 851, 8=good, 5 and 1 are 'sweet' and 'fruit' Common between 341 and 851 (excluding 3 and 8): 1 Common word: 'fruit' So 1 = fruit
Then in 341: 3=rose, 1=fruit, 4=and In 851: 8=good, 1=fruit, 5=sweet In 783: 8=good, 3=rose, 7=red
All consistent!
</details>Companies & Exams Asking Coding-Decoding
Top Companies
- TCS, Infosys, Wipro, Cognizant - 3-5 questions, mostly easy-medium
- Accenture, Deloitte, KPMG - Pattern recognition focus
- Amazon, Microsoft - Occasionally in logical reasoning rounds
- Tech Mahindra, HCL - Regular feature in online assessments
Government Exams
- SSC CGL/CHSL - 2-3 questions, medium difficulty
- Bank PO/Clerk - Frequent, often with sentence coding
- Railway NTPC - Basic letter shifting questions
- UPSC CSAT - Complex pattern-based coding
- State PSCs - Regular occurrence
Preparation Tips
-
Learn Letter Positions: Memorize A=1 through Z=26. Remember milestones: E=5, J=10, O=15, T=20, Y=25.
-
Practice Reverse Positions: Quickly calculate reverse position as 27 - position (A=26, B=25, etc.).
-
Check Common Patterns First: Always test +1, -1, +2, reverse, and opposite letter patterns before complex ones.
-
Write Down the Pattern: Once you identify the rule, write it clearly before applying to the answer.
-
Verify with Multiple Letters: Don't assume the pattern from just one letter - verify with at least 2-3 letters.
-
For Sentence Coding: Look for common words across multiple coded sentences to crack individual codes.
-
Manage Time: Don't spend more than 90 seconds on a single coding question. If stuck, mark and return.
Frequently Asked Questions (FAQs)
Q1: What are the most common coding patterns in exams?
Letter shifting (+1, +2, -1, -2), reverse coding, opposite letters, and position-based coding are most common. Sentence coding with digit substitution is also frequent in bank exams.
Q2: How do I quickly identify the coding pattern?
Check if the code length matches the original. If same length, it's likely letter-by-letter substitution. Test simple shifts first (+1, reverse), then try more complex patterns.
Q3: What is the fastest way to remember letter positions?
Use the EJOTY rule: E=5, J=10, O=15, T=20, Y=25. Calculate other letters relative to these. For reverse positions, remember the sum is always 27.
Q4: How to approach sentence/digit coding problems?
Compare two sentences at a time to find common words and their corresponding digits. Create a mapping table as you solve. Start with the sentence that has the most overlap with others.
Q5: Are coding-decoding questions getting harder in recent exams?
Recent trends show more complex multi-step patterns and conditional coding (different rules for vowels/consonants, odd/even positions). Practice advanced patterns to stay prepared.
Master coding-decoding with pattern recognition and consistent practice!