In a certain code language, 'ABROAD' is written as 'SCBFCQ' and 'ACCEPT' is written as 'DDBVRG'. How will 'ACTION' be written as in that language?
- AUDBPQK
- BTCANOI
- CTCAPQK
- DVECPQK
Solution & Step-by-step Explanation
Let's analyze the coding pattern by splitting the 6-letter words into two halves of 3 letters each:Pattern for ABROAD SCBFCQ:First half: A B R Reverse order: R B A. Add to each letter: This gives SCB.Second half: O A D Reverse order: D A O. Add to each letter: (Wait, let's verify with the actual position value shifting directly)Alternative direct positional shift:Let's check cross-matching or pairing:A B R O A DPositions:A(1), B(2), R(18), O(15), A(1), D(4)Code: S(19), C(3), B(2), F(6), C(3), Q(17)Let's check: So the first 3 letters are reversed and is applied.Now for the last 3 letters: O(15), A(1), D(4) F(6), C(3), Q(17) So the last 3 letters are reversed and is applied.Let's verify with ACCEPT DDBVRG:First 3 letters: A C C Reverse: C C A. Apply : Gives DDB. Correct.Last 3 letters: E P T Reverse: T P E. Apply : Gives VRG. Correct.Now apply this pattern to ACTION:First 3 letters: A C T Reverse: T C A. Apply : Gives UDBLast 3 letters: I O N Reverse: N O I. Apply : Gives PQKCombining both parts: UDBPQK.