Question:

In a code language, 'TIGER' is written as 'JUISF'. How will 'EQUAL' be written in that language?

Show Hint

In code language problems, identify the pattern of shifts or substitutions used for letters, and apply the same logic to the new word.
Updated On: Apr 24, 2025
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

In the given code, the word "TIGER" is written as "JUISF". We can deduce the following pattern: - Each letter is shifted forward by a certain number of positions in the alphabet. - 'T' → 'J' (shifted backward by 10) - 'I' → 'U' (shifted forward by 2) - 'G' → 'I' (shifted forward by 2) - 'E' → 'S' (shifted forward by 2) - 'R' → 'F' (shifted forward by 2) Now applying the same rule to the word "EQUAL": - 'E' → 'R' (shifted forward by 13) - 'Q' → 'F' (shifted forward by 2) - 'U' → 'W' (shifted forward by 2) - 'A' → 'B' (shifted forward by 1) - 'L' → 'E' (shifted forward by 2) Thus, "EQUAL" will be written as "RFXMB".
Was this answer helpful?
0
1