Number-Letter Codes - Beginner-Intermediate Level: character encoding BEGINNER-INTERMEDIATE

Intensive quick response training 🎯 drill: 20 beginner-intermediate-level number-letter codes questions. Worksheet 10 of 30 hones your character encoding abilities. Practice positional codes, ASCII patterns, letter value codes under timed conditions. Best for developing students seeking building on fundamentals with moderate challenges.

📝 Worksheet 10 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 10 of 30 (33% complete)

Question 1

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 2

For 'LMN', find the differences between consecutive letter positions (A=1,B=2...). Format as comma-separated values.
Positions: [12, 13, 14] → Differences: [1, 1]

Question 3

If letters are coded as 5-bit binary (A=1=00001, B=2=00010...), 'FROG' is coded as?
Binary coding: F=6=00110, R=18=10010, O=15=01111, G=7=00111 → concatenated = 00110100100111100111

Question 4

If A=1, B=1, C=2, D=3, E=5, F=8... (Fibonacci sequence), what is 'ABC' coded as?
Fibonacci coding: A=1, B=1, C=2 → concatenated = 112

Question 5

If a word's code is the sum of its letter positions (A=1,B=2...), what is 'EAGLE's code?
Sum calculation: E=5 + A=1 + G=7 + L=12 + E=5 = 30

Question 6

If a word's code is the sum of its letter positions (A=1,B=2...), what is 'BIRD's code?
Sum calculation: B=2 + I=9 + R=18 + D=4 = 33

Question 7

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

Question 8

If A=1, B=1, C=2, D=3, E=5, F=8... (Fibonacci sequence), what is 'FISH' coded as?
Fibonacci coding: F=8, I=34, S=4181, H=21 → concatenated = 834418121

Question 9

If A=1, B=2, C=3... Z=26, then 'BAD' is coded as?
Letter to number: B=2 + A=1 + D=4 → concatenated = 214

Question 10

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

Question 11

If A=2, B=3, C=5, D=7, E=11... (prime numbers in order), what is 'ABC' coded as?
Prime coding: A→2, B→3, C→5 → concatenated = 235

Question 12

For 'DOG', odd positions use reverse coding, even positions use shift coding. What is the result?
Alternating coding: D→23(rev), O→Q(+2), G→20(rev) → 23Q20

Question 13

If letters are coded as (position mod 8), 'ALPHABET' becomes?
Modular coding: A=1%8=1, L=12%8=4, P=16%8=0, H=8%8=0, A=1%8=1, B=2%8=2, E=5%8=5, T=20%8=4 → concatenated = 14001254

Question 14

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 15

If A=1, B=1, C=2, D=3, E=5, F=8... (Fibonacci sequence), what is 'CAT' coded as?
Fibonacci coding: C=2, A=1, T=6765 → concatenated = 216765

Question 16

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

Question 17

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

Question 18

If letters are coded as 5-bit binary (A=1=00001, B=2=00010...), 'FROG' is coded as?
Binary coding: F=6=00110, R=18=10010, O=15=01111, G=7=00111 → concatenated = 00110100100111100111

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=1, C=2, D=3, E=5, F=8... (Fibonacci sequence), what is 'CAT' coded as?
Fibonacci coding: C=2, A=1, T=6765 → concatenated = 216765
Previous Worksheet Next Worksheet