Easy way of solving Coding & Decoding problem 4

Coding & Decoding latest pattern
Find solution from below ( TYPE 2 )

If you Observe the pattern each and every word starts with only 4 letters & follows certain format as follows :

Point 1: common starting letters(H,S,B,P)
Point 2 :format=(symbol, number , letter )
Point 3 :symbol id-(H-@ ; S- * ; B-$ ; P-% )
Point 4 : finding number :
If last letter is vowel then ,no of vowels in that word
If last letter is consonant then ,no of consonants in that word
Point 4 : finding letter :
If number of letters are even then letter = first letter of word
If number of letters are odd then letter = middle letter of word
for example to find code for Panit :
symbol of P -% ;
last letter of word - T (consonant) then no of consonants in Paint = 3 ;
number of letters - 5 (odd) then middle letter = I
final answer - %3I
for example to find code for Bite :
symbol of B -$ ;
last letter of word - E (Vowel) then no of Vowels in Bite = 2 ;
number of letters - 4 (even) then first letter = B
final answer - $2B
similarly you can solve other problems easily

Do you want to learn more latest coding-decoding patterns, Click Here

SUBSCRIBE(must and should verify) & FOLLOW from below to get more tricks via E-mail

Back to Top