Question:

In a certain code language, THANKS is written as SKNTHA. How is STUPID written in that code language?

Show Hint

In coding questions, try splitting words into equal parts and check for \textbf{reversal or rearrangement patterns}.
Updated On: Apr 17, 2026
  • DIPUTS
  • DISPUT
  • DIPUST
  • None of the above
Show Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation


Concept: This is a coding-decoding problem based on reversing letter groups. Step 1:Analyze the given coding.
\[ \text{THANKS} \rightarrow \text{SKNTHA} \] Split into two parts: \[ \text{THANKS} = \text{THA} \;|\; \text{NKS} \] Reverse each part: \[ \text{THA} \rightarrow \text{AHT}, \quad \text{NKS} \rightarrow \text{SKN} \] Combine in reverse order: \[ \text{SKN} + \text{THA} = \text{SKNTHA} \]
Step 2:Apply the same rule to STUPID.
\[ \text{STUPID} = \text{STU} \;|\; \text{PID} \] Reverse each part: \[ \text{STU} \rightarrow \text{UTS}, \quad \text{PID} \rightarrow \text{DIP} \] Combine in reverse order: \[ \text{DIP} + \text{UTS} = \text{DIPUTS} \]
Step 3:Match with options.} \[ \text{Correct code = DIPUTS} \]
Was this answer helpful?
0
0