← Back to Test

Problem 1 - Entrance Test

In a certain code, 'SUN' is written as '36'. How is 'MOON' written in that code? (Rule: Sum of digits of each letter's alphabet position, then multiplied by 2)

Correct: A

S = 19 (1+9=10), U = 21 (2+1=3), N = 14 (1+4=5). Total sum: 10 + 3 + 5 = 18 × 2 = 36. For MOON: M=13 (1+3=4), O=15 (1+5=6), O=15 (6), N=14 (5). Sum: 4 + 6 + 6 + 5 = 21 × 2 = 42.