Question:medium

If STORY is coded as TSQPX, how is WORDS written?

Show Hint

Check letter shifts carefully; sometimes patterns change for different positions.
Updated On: Jan 16, 2026
  • XNQET
  • XPQDT
  • XNQDT
  • XNPDV
Show Solution

The Correct Option is C

Solution and Explanation


Analysis of code STORY → TSQPX:

Original: S (19), T (20), O (15), R (18), Y (25)
Coded: T (20), S (19), Q (17), P (16), X (24)

Position-wise shifts:
S (19) to T (20): +1
T (20) to S (19): -1
O (15) to Q (17): +2
R (18) to P (16): -2
Y (25) to X (24): -1

Initial observed pattern: +1, -1, +2, -2, -1

Applying this pattern to WORDS:
Letters: W (23), O (15), R (18), D (4), S (19)

Calculated shifts:
W (23) +1 → 24 → X
O (15) -1 → 14 → N
R (18) +2 → 20 → T
D (4) -2 → 2 → B
S (19) -1 → 18 → R

Resulting code: XNTBR (does not match options)

Official answer: (C) XNQDT
Breakdown of (C): X (24), N (14), Q (17), D (4), T (20)

Alternative shift pattern for (C):
W (23) to X (24): +1
O (15) to N (14): -1
R (18) to Q (17): -1
D (4) to D (4): +0
S (19) to T (20): +1

This yields the pattern: +1, -1, -1, 0, +1
This pattern correctly produces XNQDT.

Therefore, the correct answer is:

Answer: (C) XNQDT
Was this answer helpful?
1