Number-Letter Codes - Beginner-Intermediate Level: code conversion BEGINNER-INTERMEDIATE

Comprehensive race against clock worksheet covering 20 beginner-intermediate-level number-letter codes problems. Worksheet 8 of 30 emphasizes code conversion. Master alphanumeric coding, letter-number mapping, positional codes through detailed explanations. Difficulty: building on fundamentals with moderate challenges. Tailored for developing preparation.

📝 Worksheet 8 of 30 • 20 questions • ⏱️ Estimated time: 20 minutes • 🎯 Beginner-intermediate level

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

Question 1

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 2

For 'XYZ', find the differences between consecutive letter positions (A=1,B=2...). Format as comma-separated values.
Positions: [24, 25, 26] → Differences: [1, 1]

Question 3

If each letter is coded as its ASCII value (A=65, B=66...), what is 'BUG' coded as?
ASCII coding: B=66, U=85, G=71 → concatenated = 668571

Question 4

If letters are coded as 5-bit binary (A=1=00001, B=2=00010...), 'CAT' is coded as?
Binary coding: C=3=00011, A=1=00001, T=20=10100 → concatenated = 000110000110100

Question 5

If each letter is shifted forward by 4 positions (A→E), what is 'CAT' coded as?
Shift coding: C→G(+4), A→E(+4), T→X(+4) → GEX

Question 6

If vowels (A,E,I,O,U) are coded as 'V' and consonants as 'C', what is the code for 'CAT'?
Vowel/Consonant coding: C→C, A→V, T→C → CVC

Question 7

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 8

If each letter is shifted forward by 5 positions (A→F), what is 'CAT' coded as?
Shift coding: C→H(+5), A→F(+5), T→Y(+5) → HFY

Question 9

If each letter is coded as its ASCII value (A=65, B=66...), what is 'BUG' coded as?
ASCII coding: B=66, U=85, G=71 → concatenated = 668571

Question 10

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 11

If vowels (A,E,I,O,U) are coded as 'V' and consonants as 'C', what is the code for 'BAG'?
Vowel/Consonant coding: B→C, A→V, G→C → CVC

Question 12

If a word's code is the product of its letter positions, what is 'BAD's code?
Product calculation: B=2 × A=1 × D=4 = 8

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 'BED' coded as?
Digit sum coding: B=2→digit_sum=2, E=5→digit_sum=5, D=4→digit_sum=4 → concatenated = 254

Question 14

If a word's code is the sum of its letter positions (A=1,B=2...), what is 'BEAR's code?
Sum calculation: B=2 + E=5 + A=1 + R=18 = 26

Question 15

If each letter is coded as its ASCII value (A=65, B=66...), what is 'DOG' coded as?
ASCII coding: D=68, O=79, G=71 → concatenated = 687971

Question 16

If A=1, B=2, C=3... Z=26, then 'ACE' is coded as?
Letter to number: A=1 + C=3 + E=5 → concatenated = 135

Question 17

If a word's code is the product of its letter positions, what is 'DOG's code?
Product calculation: D=4 × O=15 × G=7 = 420

Question 18

If A=26, B=25, C=24... Z=1 (reverse order), then 'BAD' is coded as?
Reverse coding: B=25 + A=26 + D=23 → concatenated = 252623

Question 19

If letters are coded as (position mod 10), 'WORLD' becomes?
Modular coding: W=23%10=3, O=15%10=5, R=18%10=8, L=12%10=2, D=4%10=4 → concatenated = 35824

Question 20

If a word's code is the sum of its letter positions (A=1,B=2...), what is 'DOG's code?
Sum calculation: D=4 + O=15 + G=7 = 26
Previous Worksheet Next Worksheet