A global supply chain software tracks cargo shipments by encrypting destination city names to ensure data privacy. In this system, the destination "LONDON" is coded as "OLMFQP" and "BERLIN" is coded as "YVINKP". Based on this coding logic, how will the destination "MUMBAI" be coded in this tracking system?
- NFNDCKAnswer
- BOWODCK
- COWOYZR
- DNFNYZR
Answer
NFNDCK
The coding logic splits the word into two equal halves. The letters in the first half are replaced by their reverse alphabetical counterparts (i.e., A=Z, B=Y, or position 27 - n). The letters in the second half are shifted forward by 2 positions in the alphabet. For 'MUMBAI', the first half 'MUM' becomes 'NFN' through reverse indexing, and the second half 'BAI' becomes 'DCK' through a +2 shift. Combining these yields 'NFNDCK'.
Step-by-Step Solution
Key Concept
Identifying split-pattern coding sequences utilizing reverse alphabetical indexing and positional shifts.