Difficulty: Easy
Correct Answer: IVJFRIVW
Explanation:
Introduction / Context:
Atbash cipher maps each letter to its mirror in the alphabet: A↔Z, B↔Y, C↔X, etc. The examples confirm this exact mapping.
Given Data / Assumptions:
Concept / Approach:
Apply Atbash per letter: r->i, e->v, q->j, u->f, i->r, r->i, e->v, d->w.
Step-by-Step Solution:
R -> IE -> VQ -> JU -> FI -> RR -> IE -> VD -> WThus "REQUIRED" -> "IVJFRIVW".
Verification / Alternative check:
Testing random letters from the examples reproduces their given codes, validating the mapping.
Why Other Options Are Wrong:
Common Pitfalls:
Reversing the word instead of mirroring letters, or applying a Caesar shift. Atbash is a fixed one-to-one mapping.
Final Answer:
IVJFRIVW
Discussion & Comments