Verify mobile number to view the solution
Solutions
For numbers, you have to count the letters in the words. Then there will be two conditions.
1. If the word has
odd number of letters, then you have to count the number of letters and multiply it with 2.
Example: Banking
It has 7 letters, so multiply it with 2 i.e. 14
2. If the word has
even number of digits, then divide the total number of letters in the word by 2.
Example: Bank
It has 4 letters, so divide it with 2. i.e. 1.
For letters, You have to take two cases.
1) If the word has
odd number of letters, you have to take the first letter of the word and write the letter in the code which is +2 of it.
Example: Banking
Consider B, B(2) + 2 = 4
4 means D.
2) If the word has
even number of letters, you have to take the first letter of the word and write the letter in the code which is -2 of it.
Example: Make
M(13) – 2 = 11
11 means K.
MONEY = O10
BANK= Z2
WAY= Y6
LETS= J2