Difficulty: Easy
Correct Answer: #@%$@
Explanation:
Introduction / Context:
This is a direct symbol substitution problem. Each letter has a unique symbol mapping and the coded word is formed by replacing letters in order.
Given Data / Assumptions:
Concept / Approach:
Replace letters one by one according to the mapping without rearranging positions.
Step-by-Step Solution:
P -> #E -> @A -> %C -> $E -> @Therefore "PEACE" is "#@%$@".
Verification / Alternative check:
Check each symbol against the mapping; all positions agree.
Why Other Options Are Wrong:
Common Pitfalls:
Accidentally reordering letters or mixing the symbols for A and C since both are non-alphabetic and easy to confuse.
Final Answer:
#@%$@
Discussion & Comments