October 6, 2023
Parsers
October 7, 2023Mathematical-Reasoning
Question 5 |
In a certain coding language, ‘AEIOU’ is writing as ‘TNHDZ’. Using the same coding language, ‘BFJPV’ will be written as
UOIEA | |
AEIOUS | |
CGKQW | |
WQKGC
|
Question 5 Explanation:
‘AEIOU’ is written as ‘TNHDZ’
The above code following 2 conditions
1. character-1
2. Firs position is replaced with last position
A-1= Z and placed in last
E-1= D placed in second last
I-1=H placed in third last
O-1=N placed in fourth last
S-1=T placed in first position
The above code following 2 conditions
1. character-1
2. Firs position is replaced with last position
A-1= Z and placed in last
E-1= D placed in second last
I-1=H placed in third last
O-1=N placed in fourth last
S-1=T placed in first position
The same order will follow for ‘BFJPV’
B-1= A placed in last
F-1=E is placed in second last
J-1=I is placed in third last
P-1=O is placed in fourth last
V-1=U is placed in first position.
Correct Answer: A
Question 5 Explanation:
‘AEIOU’ is written as ‘TNHDZ’
The above code following 2 conditions
1. character-1
2. Firs position is replaced with last position
A-1= Z and placed in last
E-1= D placed in second last
I-1=H placed in third last
O-1=N placed in fourth last
S-1=T placed in first position
The above code following 2 conditions
1. character-1
2. Firs position is replaced with last position
A-1= Z and placed in last
E-1= D placed in second last
I-1=H placed in third last
O-1=N placed in fourth last
S-1=T placed in first position
The same order will follow for ‘BFJPV’
B-1= A placed in last
F-1=E is placed in second last
J-1=I is placed in third last
P-1=O is placed in fourth last
V-1=U is placed in first position.