Difficulty: Easy
Correct Answer: UJKR
Explanation:
Introduction / Context:
This is a classic Caesar shift puzzle. The demonstration mapping FATHER → HCVJGT indicates that each letter has been advanced by +2 places in the alphabet, with wrap-around after Z.
Given Data / Assumptions:
Concept / Approach:
For each plaintext letter L, compute code(L) = L shifted forward by 2. Maintain case and positions.
Step-by-Step Solution:
S → U (+2)H → J (+2)I → K (+2)P → R (+2)Therefore, SHIP → UJKR.
Verification / Alternative check:
Cross-check a couple of letters against the example mapping (e.g., R → T is +2; similarly P → R is +2). The rule is consistent.
Why Other Options Are Wrong:
Common Pitfalls:
Applying +1, forgetting wrap-around, or permuting letters instead of letterwise shifting.
Final Answer:
UJKR
Discussion & Comments