Question:medium

In a certain code language, `EARTH' is written as `JFWYM'. How is `WORLD' written in that code?

Show Hint

For coding-decoding, convert letters to alphabetical positions (A=1, ..., Z=26) and check for consistent shifts, accounting for wrap-around (modulo 26).
Updated On: Jan 16, 2026
  • BTWNE
  • BTXNE
  • BSXNE
  • BTWQI

Show Solution

The Correct Option is D

Solution and Explanation

To decode "WORLD", first identify the encryption method used for "EARTH" to "JFWYM".

1. Example Analysis:

- Original: E A R T H
- Encrypted: J F W Y M

2. Pattern Discovery:

Determine the alphabetical shift for each letter:

LetterEARTH
Alphabetical Position5118208
Encrypted LetterJFWYM
Encrypted Position106232513
Shift Value+5+5+5+5+5

The pattern is a forward shift of 5 positions for each letter.

3. Applying Pattern to "WORLD":

Calculate the new positions for "WORLD" by adding 5, wrapping around the alphabet (26 letters) if necessary:

LetterWORLD
Alphabetical Position231518124
Shifted Position (+5)282023179
Final Position (with wrap-around)2 (B)20 (T)23 (W)17 (Q)9 (I)

4. Derived Code for "WORLD":

The resulting encrypted word is: BTWQI

Conclusion:

The word "WORLD" is encrypted as "BTWQI" using this code.

Was this answer helpful?
0