Difficulty: Easy
Correct Answer: ocqzkd
Explanation:
Introduction / Context:
We apply a uniform backward shift to decode and present the result in lowercase.
Given Data / Assumptions:
Concept / Approach:
For each letter L, compute L−6 modulo 26. Then convert to lowercase.
Step-by-Step Solution:
Verification / Alternative check:
Encoding “ocqzkd” with +6 retrieves “xacgly”.
Why Other Options Are Wrong:
Common Pitfalls:
Dropping wrap-around at the alphabet ends (A..Z).
Final Answer:
ocqzkd
Discussion & Comments