Difficulty: Easy
Correct Answer: KNSTR
Explanation:
Introduction / Context:
This problem belongs to the basic coding–decoding family where each letter of a word is transformed using a consistent substitution rule. Recognizing a uniform shift across all letters is a common exam pattern in verbal reasoning.
Given Data / Assumptions:
Concept / Approach:
The rule is: for each letter, replace it with the previous alphabet letter. Example: B becomes A, C becomes B, and so on. This is a Caesar shift of -1 applied uniformly to all positions.
Step-by-Step Solution:
L -> KO -> NT -> SU -> TS -> RTherefore "LOTUS" becomes "KNSTR".
Verification / Alternative check:
Apply the same -1 shift to "SOBER": S->R, O->N, B->A, E->D, R->Q. The stated example demonstrates the very rule; our application to "LOTUS" is consistent.
Why Other Options Are Wrong:
Common Pitfalls:
Candidates sometimes shift only vowels or only consonants, or shift forward instead of backward. Another error is applying different shifts to different positions.
Final Answer:
KNSTR
Discussion & Comments