In a certain code system, words are transformed according to the following rules based on letter positions indexed from left to right:
1. Letters at odd position indices () are replaced by their reverse alphabetical counterparts (where , , , etc.).
2. Letters at even position indices () are replaced by the letter shifted forward in the English alphabet by a number of positions equal to their 1-based index (wrapping around from to if necessary).
Based on these rules, what is the correct code for the word 'JOURNEY'?
- QQFVMKBAnswer
- BKQXVSKF
- CPQEVLKA
- DKLXISVF
Answer
QQFVMKB
The correct answer 'QQFVMKB' is obtained by applying the two positional rules step-by-step: at odd positions (1, 3, 5, 7), the reverse alphabetical positions () yield Q, F, M, and B respectively. At even positions (2, 4, 6), adding the letter's 1-based index to its rank gives Q (15 + 2 = 17), V (18 + 4 = 22), and K (5 + 6 = 11). Combining these yields 'QQFVMKB'.
Step-by-Step Solution
Key Concept
Positional Hybrid Coding (Reverse Indexing combined with Index-Based Forward Shift)
Estimated Time:1m 30s