Difficulty: Easy
Correct Answer: REGNIFYDAL
Explanation:
Introduction / Context:Some coding problems simply reverse the order of letters in a word. The given example confirms full reversal without any substitution.
Given Data / Assumptions:
Concept / Approach:Reverse the sequence of characters exactly.
Step-by-Step Solution:LADYFINGER reversed is REGNIFYDAL.Breakdown: LADY | FINGER → reverse each position to get REGNIF + YDAL.
Verification / Alternative check:Reverse "LAJNIRB" to retrieve "BRINJAL", confirming the rule.
Why Other Options Are Wrong:
Common Pitfalls:Performing partial reversal or swapping only ends without flipping the entire sequence.
Final Answer:REGNIFYDAL
Discussion & Comments