Difficulty: Easy
Correct Answer: ocdkzq
Explanation:
Introduction / Context:
A negative Caesar shift moves letters backward. With −6, we map e.g., V→P, W→Q, …, F→Z. After substitution, convert to lowercase.
Given Data / Assumptions:
Concept / Approach:
Apply −6 to each character modulo 26, preserving order.
Step-by-Step Solution:
Verification / Alternative check:
Re-encode “ocdkzq” with +6; it returns “vprfkm”.
Why Other Options Are Wrong:
Common Pitfalls:
Mixing up letter-to-index mapping (A=0 or A=1). Stick to one convention to avoid off-by-one errors.
Final Answer:
ocdkzq
Discussion & Comments