To categorize inventory, a warehouse management system generates unique reference tags for items based on their names by applying a consistent alphabetical transformation. For example, the item named PUBLIC is assigned the reference tag LGZPSY.
Applying this exact same tagging algorithm, what reference tag will be generated for the item named SECTOR?
- IWYHMJCevap
- BHVXGLI
- CTFDUPS
- DGUWFKH
Cevap
The correct reference tag generated for the item SECTOR is IWYHMJ.
The correct algorithm applies a two-step transformation to each letter. First, it finds the reverse alphabetical counterpart (Opposite: A becomes Z, B becomes Y, etc.). Second, it shifts that opposite letter forward by 1 position (+1). Applying this exact logic to SECTOR yields IWYHMJ.
Adım Adım Çözüm
Anahtar Kavram
Identifying compound character transformations (reverse indexing paired with standard interval shifting) in alphanumeric strings.