Question:easy

In a certain code language, FALSE is written as 6, 1, 12, 19, 5 which represents the alphabetical positions of its letters. How will LOGIC be written in that code language?

Show Hint

Remember: A=1, B=2, C=3, , Z=26. Many coding questions directly use alphabetical positions.
Updated On: Jun 11, 2026
  • 12, 15, 7, 9, 3
  • 11, 15, 8, 9, 3
  • 12, 16, 7, 8, 3
  • 13, 15, 7, 9, 2
Show Solution

The Correct Option is A

Solution and Explanation

Step 1: Decode the sample rule.
For FALSE the code is $6,1,12,19,5$. Checking $F$ is the $6$th letter, $A$ the $1$st, $L$ the $12$th, $S$ the $19$th, $E$ the $5$th, the rule is simply each letter replaced by its alphabet position.
Step 2: Confirm the rule is positional.
Since every number equals the plain alphabet rank of its letter, we just convert each letter of the new word the same way.
Step 3: Convert L.
$L$ is the $12$th letter, so it becomes $12$.
Step 4: Convert O and G.
$O$ is the $15$th letter giving $15$, and $G$ is the $7$th giving $7$.
Step 5: Convert I and C.
$I$ is the $9$th letter giving $9$, and $C$ is the $3$rd giving $3$.
Step 6: Write the full code.
Reading the ranks in order, LOGIC becomes $12,15,7,9,3$.
\[ \boxed{12, 15, 7, 9, 3} \]
Was this answer helpful?
0