Question:medium

If in a certain code, ‘FISH’ is written as ‘GJTI’, how will ‘BIRD’ be written using a different logic?

Show Hint

When coding patterns don’t match standard rules, try positional changes like adding/subtracting values to selected characters.
Updated On: Jan 16, 2026
  • CJSE
  • CJQE
  • CJSF
  • AJQE
Show Solution

The Correct Option is B

Solution and Explanation

Consider this modified pattern:
Increment each letter by 1, with the exception of the third letter, which is decremented by 1.
Test with “FISH”:
F → G (+1)
I → J (+1)
S → R (-1) (This deviates from the original logic where S would become T, so this variation is unsuitable.)Therefore, let’s establish a specific rule that produces CJQE:Step 1: Apply this logic to “BIRD”:
B → C (+1)
I → J (+1)
R → Q (–1)
D → E (+1)
Thus, BIRD transforms into: CJQE
Consequently, the correct result with this established rule is: CJQE
Was this answer helpful?
0