Chain Moves

Chain Moves problems involve starting from a given letter and applying a sequence of moves (each move is 'n steps left/right'). After all moves, you must determine the final letter. These problems test your ability to track cumulative position changes.

10Worksheets
200+Practice Questions
IntermediateDifficulty
2-3 hoursHours to Master

Introduction to Chain Moves

Chain Moves problems involve starting from a given letter and applying a sequence of moves (each move is 'n steps left/right'). After all moves, you must determine the final letter. These problems test your ability to track cumulative position changes.

Prerequisites

Alphabet positions Direction concepts (left/right) Cumulative addition/subtraction Modulo arithmetic
Why This Matters: Chain Moves problems appear in 1-2 questions in SSC CGL and Banking PO exams. They test sequential reasoning and cumulative arithmetic.

How to Solve Chain Moves Problems

1

Step 1: Identify the starting letter and convert to position number

2

Step 2: List all moves in sequence with their directions

3

Step 3: For each 'right' move, add the step value

4

Step 4: For each 'left' move, subtract the step value

5

Step 5: Calculate the net displacement (sum of all moves with signs)

6

Step 6: Add net displacement to starting position

7

Step 7: Adjust for wrap-around (add/subtract 26 as needed to get 1-26)

8

Step 8: Convert final position to letter

Pro Strategy: Calculate net displacement by adding all right moves and subtracting all left moves. Add net displacement to starting position, then adjust for wrap-around.

Example Problem

Example 1: Start at 'D'. Move 2 right, then 3 left, then 1 right. Where do you end? Solution: Step 1: D = position 4 Step 2: Moves: +2, -3, +1 Step 3: Net displacement = 2 - 3 + 1 = 0 Step 4: Final position = 4 + 0 = 4 Step 5: Position 4 = D Answer: D Example 2: Start at 'Y'. Move 5 right, then 4 right, then 3 left. Solution: Step 1: Y = 25 Step 2: Net = +5 + 4 - 3 = +6 Step 3: Final position = 25 + 6 = 31 Step 4: Wrap: 31 - 26 = 5 Step 5: Position 5 = E Answer: E

Pro Tips & Tricks

  • Right = add (+), Left = subtract (-)
  • Net displacement = Σ(right moves) - Σ(left moves)
  • Final position = Start position + Net displacement
  • If final > 26, subtract 26 repeatedly until ≤ 26
  • If final < 1, add 26 repeatedly until ≥ 1
  • The order of moves doesn't matter for net displacement (commutative)

Shortcut Methods to Solve Faster

Net displacement = (sum of right steps) - (sum of left steps)
Final position = (Start position + Net displacement) mod 26 (with 1-26 range)
For modulo conversion: result = ((pos-1) mod 26) + 1

Common Mistakes to Avoid

Confusing left and right directions
Forgetting wrap-around when crossing Z or A
Adding/subtracting in wrong order
Not handling negative wrap-around correctly

Exam Importance

Chain Moves 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
1-2 questions

Ready to Master Chain Moves?

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