Difficulty: Easy
Correct Answer: straight
Explanation:
Introduction / Context:
This item provides a direct lookup table that maps each uppercase code letter to a specific lowercase plaintext letter. The job is to decode a given code string into a meaningful English word.
Given Data / Assumptions:
Concept / Approach:
Replace each code character with its plaintext counterpart using the dictionary, preserving order.
Step-by-Step Solution:
Z→s, B→t, Y→r, X→a, M→i, N→g, Q→h, B→tConcatenate: s t r a i g h t → straight.
Verification / Alternative check:
The decoded string forms a valid English word that fits common vocabulary, confirming the correctness of the mapping.
Why Other Options Are Wrong:
Common Pitfalls:
Reversing the mapping direction or confusing visually similar letters.
Final Answer:
straight
Discussion & Comments