Question 1
Input: LOGIC
Step 1: Reverse the word → CIGOL
Step 2: Shift each letter +1 (A→B, B→C, ..., Z→A) → DJHPM
Step 3: Rotate left by 2 positions → HPMDJ
Step 4: For even positions (0-indexed), keep letter; for odd positions, replace with position number (A=1, B=2...) → H16M4J
What is the final output?
Multiple transformations applied sequentially: LOGIC → CIGOL → DJHPM → HPMDJ → H16M4J