Question:medium

In a certain code language 'Logical Reasoning Exam' is written as 'Q12 D17'. 'Intention Really Matters' is written as 'R14 F25 G19'. Then how to write 'Work Hard' in the given code?

Show Hint

When faced with a highly complex coding question, look for the simplest possible elements first, such as word length, or the position of the first and last letters, as these are common components.
Updated On: Feb 10, 2026
  • D11 D9
  • D11 E9
  • D11 D4
  • D10 D4
Show Solution

The Correct Option is A

Solution and Explanation

Step 1: Identify the coding pattern.The code's logic is intricate. We'll search for a consistent rule.One potential rule, though not immediately obvious, is:

The Letter: The letter corresponds to the word's length (e.g., 4-letter word becomes D).
The Number: A value derived from letter positions.
Let's verify:- Work: 4 letters, hence the code begins with D. The final letter 'K' is in position 11. This results in D11.- Hard: 4 letters, so the code starts with D. For the number '9', we sum the first two letter positions (H=8, A=1, thus 8+1=9). This yields D9.
Step 2: Apply the established logic.Based on this inconsistent, yet plausible, logic which aligns with the answer:- 'Work' translates to D11.- 'Hard' translates to D9.Thus, 'Work Hard' is encoded as 'D11 D9'.Note: This question is ambiguous; the rule isn't consistently applied. The solution is derived from the given answer.
Was this answer helpful?
0