Explanation
Solution
Topic: Logical Reasoning - Coding-Decoding (Direct Letter Coding)
To solve this, we extract the digit corresponding to each letter from the given words.
Step 1: Map the letters to their digits
| Letter |
Code |
Derived from word |
| R |
6 |
ROSE, CHAIR, PREACH |
| O |
8 |
ROSE |
| S |
2 |
ROSE |
| E |
1 |
ROSE, PREACH |
| C |
7 |
CHAIR, PREACH |
| H |
3 |
CHAIR, PREACH |
| A |
4 |
CHAIR, PREACH |
| I |
5 |
CHAIR |
| P |
9 |
PREACH |
Step 2: Find the code for "SEARCH"
By picking the corresponding digits for the letters in SEARCH, we get:
-
S → 2
-
E → 1
-
A → 4
-
R → 6
-
C → 7
-
H → 3
Combining these digits, the code for SEARCH is 214673.
Correct Option: 2. 214673