In a certain code system, words are transformed according to the following rules:
1. Every vowel is replaced by its reverse alphabetical counterpart (where , , , , , such that the sum of the positional values of the original and transformed letter is ).
2. Every consonant located at an odd-numbered position in the word (1st, 3rd, 5th...) is replaced by the letter steps ahead of it in the alphabetical series ().
3. Every consonant located at an even-numbered position in the word (2nd, 4th, 6th...) is replaced by the letter steps behind it in the alphabetical series ().
If the word 'TRIANGLE' is coded as 'WPRZQEOV', which of the following represents the correct code for the word 'SOLUTION' in this language?
- VLOFWRLLAnswer
- BVLOFWRLQ
- CQLJFRRLL
- DVKOEWQKL
Answer
The correct code for the word 'SOLUTION' is 'VLOFWRLL'.
The correct code 'VLOFWRLL' is obtained by applying the specified rules systematically: 'S' (1st letter, consonant at odd position) becomes 'V' (); 'O' (2nd letter, vowel) becomes its reverse letter 'L' (); 'L' (3rd letter, consonant at odd position) becomes 'O' (); 'U' (4th letter, vowel) becomes its reverse letter 'F' (); 'T' (5th letter, consonant at odd position) becomes 'W' (); 'I' (6th letter, vowel) becomes its reverse letter 'R' (); 'O' (7th letter, vowel) becomes its reverse letter 'L' (); and 'N' (8th letter, consonant at even position) becomes 'L' ().
Step-by-Step Solution
Key Concept
Multi-rule positional letter shifting combined with reverse alphabetical indexing ( rule).