Number-Letter Codes - Expert Level: product codes EXPERT

Comprehensive self assessment worksheet covering 20 expert-level number-letter codes problems. Worksheet 28 of 30 emphasizes product codes. Master alphabet numbering, code conversion, dual coding through detailed explanations. Difficulty: challenging problems and time-bound practice. Tailored for expert-level preparation.

πŸ“ Worksheet 28 of 30 β€’ 20 questions β€’ ⏱️ Estimated time: 20 minutes β€’ 🎯 Expert level

What you'll learn in this worksheet:
Your progress through Number-Letter Codes
Worksheet 28 of 30 (93% complete)

Question 1

For 'EGG', odd positions use shift coding, even positions use shift coding. What is the result?
Alternating coding: E→G(+2), G→I(+2), G→I(+2) → GII

Question 2

If A=26, B=25, C=24... Z=1 (reverse order), then 'ANT' is coded as?
Reverse coding: A=26 + N=13 + T=7 β†’ concatenated = 26137

Question 3

If letters are coded as 5-bit binary (A=1=00001, B=2=00010...), 'ABC' is coded as?
Binary coding: A=1=00001, B=2=00010, C=3=00011 β†’ concatenated = 000010001000011

Question 4

If letters are coded as 5-bit binary (A=1=00001, B=2=00010...), 'FISH' is coded as?
Binary coding: F=6=00110, I=9=01001, S=19=10011, H=8=01000 β†’ concatenated = 00110010011001101000

Question 5

If letters are coded as (position mod 7), 'PYTHON' becomes?
Modular coding: P=16%7=2, Y=25%7=4, T=20%7=6, H=8%7=1, O=15%7=1, N=14%7=0 β†’ concatenated = 246110

Question 6

If A=26, B=25, C=24... Z=1 (reverse order), then 'BOX' is coded as?
Reverse coding: B=25 + O=12 + X=3 β†’ concatenated = 25123

Question 7

If A=1, B=1, C=2, D=3, E=5, F=8... (Fibonacci sequence), what is 'DOG' coded as?
Fibonacci coding: D=3, O=610, G=13 β†’ concatenated = 361013

Question 8

For 'MNO', odd positions (1st,3rd,5th...) are coded as their position numbers, even positions are shifted by 1 letter forward. What is the code?
Odd/Even coding: Pos1:M→13, Pos2:N→N, Pos3:O→15 → 13N15

Question 9

For 'MNO', odd positions (1st,3rd,5th...) are coded as their position numbers, even positions are shifted by 1 letter forward. What is the code?
Odd/Even coding: Pos1:M→13, Pos2:N→N, Pos3:O→15 → 13N15

Question 10

If each letter is shifted forward by 2 positions (A→C), what is 'BED' coded as?
Shift coding: B→D(+2), E→G(+2), D→F(+2) → DGF

Question 11

For 'ABC', find the differences between consecutive letter positions (A=1,B=2...). Format as comma-separated values.
Positions: [1, 2, 3] β†’ Differences: [1, 1]

Question 12

If each letter is coded as the square of its position (A=1β†’1, B=2β†’4, C=3β†’9...), what is 'EGG' coded as?
Square coding: E=5Β²=25, G=7Β²=49, G=7Β²=49 β†’ concatenated = 254949

Question 13

If each letter is coded as the sum of digits of its position (A=1β†’1, B=2β†’2, ..., J=10β†’1+0=1...), what is 'EGG' coded as?
Digit sum coding: E=5β†’digit_sum=5, G=7β†’digit_sum=7, G=7β†’digit_sum=7 β†’ concatenated = 577

Question 14

For 'VWX', odd positions (1st,3rd,5th...) are coded as their position numbers, even positions are shifted by 1 letter forward. What is the code?
Odd/Even coding: Pos1:V→22, Pos2:W→W, Pos3:X→24 → 22W24

Question 15

If A=26, B=25, C=24... Z=1 (reverse order), then 'ACE' is coded as?
Reverse coding: A=26 + C=24 + E=22 β†’ concatenated = 262422

Question 16

For 'ACE', find the differences between consecutive letter positions (A=1,B=2...). Format as comma-separated values.
Positions: [1, 3, 5] β†’ Differences: [2, 2]

Question 17

If letters are coded as (position mod 7), 'PYTHON' becomes?
Modular coding: P=16%7=2, Y=25%7=4, T=20%7=6, H=8%7=1, O=15%7=1, N=14%7=0 β†’ concatenated = 246110

Question 18

If letters are coded as 5-bit binary (A=1=00001, B=2=00010...), 'BED' is coded as?
Binary coding: B=2=00010, E=5=00101, D=4=00100 β†’ concatenated = 000100010100100

Question 19

If a word's code is the product of its letter positions, what is 'CAT's code?
Product calculation: C=3 Γ— A=1 Γ— T=20 = 60

Question 20

If A=1, B=2, C=3... Z=26, then 'DOG' is coded as?
Letter to number: D=4 + O=15 + G=7 β†’ concatenated = 4157
Previous Worksheet Next Worksheet