Difficulty: Easy
Correct Answer: FIRE
Explanation:
Introduction / Context:
This is a classic Caesar cipher problem with a constant forward shift. The example "WATER" -> "YCVGT" reveals a +2 shift applied uniformly to each letter.
Given Data / Assumptions:
Concept / Approach:
To decode a +2 cipher, shift letters backward by 2 positions. We apply -2 to each letter in "HKTG".
Step-by-Step Solution:
H -> FK -> IT -> RG -> ETherefore the decoded word is FIRE.
Verification / Alternative check:
Re-encode FIRE with +2: F->H, I->K, R->T, E->G which returns HKTG. Perfect consistency.
Why Other Options Are Wrong:
Common Pitfalls:
Shifting in the wrong direction, or mixing different shifts across positions.
Final Answer:
FIRE
Discussion & Comments