Letter Sequences

Letter Sequences involve patterns in the alphabet where letters progress according to positional shifts (A→B→C→D), skipping patterns (A→C→E→G), reverse order (Z→Y→X→W), or vowel/consonant sequences. These problems test your knowledge of alphabet positions and pattern recognition.

10Worksheets
200+Practice Questions
BeginnerDifficulty
1-2 hoursHours to Master

Introduction to Letter Sequences

Letter Sequences involve patterns in the alphabet where letters progress according to positional shifts (A→B→C→D), skipping patterns (A→C→E→G), reverse order (Z→Y→X→W), or vowel/consonant sequences. These problems test your knowledge of alphabet positions and pattern recognition.

Prerequisites

Alphabet order (A to Z) Position numbers (A=1 to Z=26) Concept of forward and backward shifts Vowel and consonant identification
Why This Matters: Letter Sequences problems appear in 1-2 questions in SSC CGL and Banking PO exams. They test alphabet position knowledge.

How to Solve Letter Sequences Problems

1

Step 1: Convert each letter to its position number (A=1, B=2, ..., Z=26)

2

Step 2: Find the pattern in the position numbers

3

Step 3: Common patterns: +1 (consecutive), +2 (skip one), -1 (reverse), alternating shifts

4

Step 4: Apply the pattern to find the next position number

5

Step 5: Convert the position back to a letter

6

Step 6: Handle wrap-around (Z+1 = A, A-1 = Z)

7

Step 7: Verify the pattern holds for all given letters

Pro Strategy: Always convert letters to position numbers first. The pattern is usually arithmetic progression in the position numbers. For wrap-around, use modulo 26 arithmetic.

Example Problem

Example: Find the next letter: A, C, E, G, ___ Solution: Step 1: A=1, C=3, E=5, G=7 Step 2: Pattern: +2 each time Step 3: Next position = 7 + 2 = 9 Step 4: Position 9 = I Answer: I

Pro Tips & Tricks

  • 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
  • Vowels: A, E, I, O, U (positions 1,5,9,15,21)
  • Consonants: all other letters
  • Common patterns: +1, +2, +3, -1, -2, -3
  • Pattern can be: +1, +2, +1, +2,... (alternating shifts)

Shortcut Methods to Solve Faster

Next letter = letter at position (current position + step)
For wrap-around: new position = ((old position - 1 + step) mod 26) + 1
Vowels are at positions 1,5,9,15,21
Consonants are all other positions

Common Mistakes to Avoid

Using alphabetical order without converting to numbers
Forgetting wrap-around when crossing Z or A
Confusing letter order (B comes after A, not before)
Not handling case sensitivity (exams use uppercase)

Exam Importance

Letter Sequences is an important topic for various competitive exams. Here's how frequently it appears:

SSC CGL
1-2 questions
BANKING PO
1-2 questions
RAILWAYS RRB
2-3 questions
CAT
0-1 questions
INSURANCE
1-2 questions

Ready to Master Letter Sequences?

Start with Worksheet 1 and work your way up to expert level! Each worksheet includes:

20 practice questions
Detailed solutions
Step-by-step explanations
Start Practicing Now