Number-Letter Codes - Beginner Level: ASCII patterns BEGINNER

Level up your number-letter codes skills with this entry level practice. 20 beginner-level problems await in Worksheet 4 of 30. Focus area: ASCII patterns. Learn ASCII patterns, letter value codes, numeric equivalents through systematic practice. Designed for entry-level learners seeking foundational concepts and basic patterns.

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

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

Question 1

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

Question 2

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

Question 3

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 4

If a word's code is the sum of its letter positions (A=1,B=2...), what is 'TIGER's code?
Sum calculation: T=20 + I=9 + G=7 + E=5 + R=18 = 59

Question 5

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 6

If a word's code is the sum of its letter positions (A=1,B=2...), what is 'FISH's code?
Sum calculation: F=6 + I=9 + S=19 + H=8 = 42

Question 7

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 8

For 'BED', odd positions use position coding, even positions use shift coding. What is the result?
Alternating coding: B→2(pos), E→G(+2), D→4(pos) → 2G4

Question 9

If letters are coded as 5-bit binary (A=1=00001, B=2=00010...), 'BIRD' is coded as?
Binary coding: B=2=00010, I=9=01001, R=18=10010, D=4=00100 → concatenated = 00010010011001000100

Question 10

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 11

If vowels (A,E,I,O,U) are coded as 'V' and consonants as 'C', what is the code for 'FISH'?
Vowel/Consonant coding: F→C, I→V, S→C, H→C → CVCC

Question 12

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 13

For 'JKL', 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:J→10, Pos2:K→K, Pos3:L→12 → 10K12

Question 14

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 15

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 16

If letters are coded as 5-bit binary (A=1=00001, B=2=00010...), 'DOG' is coded as?
Binary coding: D=4=00100, O=15=01111, G=7=00111 → concatenated = 001000111100111

Question 17

If a word's code is the sum of its letter positions (A=1,B=2...), what is 'WOLF's code?
Sum calculation: W=23 + O=15 + L=12 + F=6 = 56

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

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 20

If a word's code is the product of its letter positions, what is 'FISH's code?
Product calculation: F=6 × I=9 × S=19 × H=8 = 8208
Previous Worksheet Next Worksheet