Difficulty: Medium
Correct Answer: SJSUES
Explanation:
Introduction / Context:
Many coding-decoding questions use position-based rules rather than a single uniform shift. Here, the example FATHER → FBTIES shows that odd positions stay the same while even positions are advanced by +1 letter.
Given Data / Assumptions:
Concept / Approach:
Process each letter by its 1-indexed position. Keep 1st, 3rd, 5th as-is; shift 2nd, 4th, 6th by +1.
Step-by-Step Solution:
1) S(1) → S2) I(2) → J3) S(3) → S4) T(4) → U5) E(5) → E6) R(6) → SHence, SISTER → SJSUES.
Verification / Alternative check:
Apply the pattern back to FATHER to confirm the rule matches exactly as shown in the prompt example.
Why Other Options Are Wrong:
Common Pitfalls:
Applying a uniform shift, using 0-indexed positions, or forgetting wrap-around behavior.
Final Answer:
SJSUES
Discussion & Comments