In a code language, 'HELLO' is coded as 83 and 'SHELL' is coded as 79. How will 'MATCH' be coded in the same language?
- A90
- B92
- C87
- D96
Solution & Step-by-step Explanation
The logic here involves summing the reverse alphabetical positional values of each letter (where A = 26, B = 25, ..., Z = 1). The reverse position can be calculated as .
Let's verify with 'HELLO' 83:
* H
* E
* L
* L
* O
Let's check 'SHELL' 79:
* S
* H
* E
* L
* L
Applying the same logic to 'MATCH':
* M
* A
* T
* C
* H
Thus, 'MATCH' will be coded as 90.
Let's verify with 'HELLO' 83:
* H
* E
* L
* L
* O
Let's check 'SHELL' 79:
* S
* H
* E
* L
* L
Applying the same logic to 'MATCH':
* M
* A
* T
* C
* H
Thus, 'MATCH' will be coded as 90.