Number-Letter Codes - Advanced Level: character encoding ADVANCED

Boost your speed and accuracy with this high difficulty set 📈 worksheet. Worksheet 25 of 30 presents 20 advanced-level number-letter codes problems. Focus on character encoding while practicing ASCII patterns, letter value codes, numeric equivalents. Difficulty: complex scenarios and multi-step problems. Perfect for advanced test takers.

📝 Worksheet 25 of 30 • 20 questions • ⏱️ Estimated time: 20 minutes • 🎯 Advanced level

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

Question 1

If letters are coded as (position mod 5), 'LETTER' becomes?
Modular coding: L=12%5=2, E=5%5=0, T=20%5=0, T=20%5=0, E=5%5=0, R=18%5=3 → concatenated = 200003

Question 2

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 3

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

Question 4

For 'BED', odd positions use reverse coding, even positions use reverse coding. What is the result?
Alternating coding: B→25(rev), E→22(rev), D→23(rev) → 252223

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 each letter is shifted forward by 1 positions (A→B), what is 'BED' coded as?
Shift coding: B→C(+1), E→F(+1), D→E(+1) → CFE

Question 7

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 8

For 'CAT', odd positions use position coding, even positions use shift coding. What is the result?
Alternating coding: C→3(pos), A→C(+2), T→20(pos) → 3C20

Question 9

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 10

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 11

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 12

If A=2, B=3, C=5, D=7, E=11... (prime numbers in order), what is 'FISH' coded as?
Prime coding: F→13, I→23, S→67, H→19 → concatenated = 13236719

Question 13

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 14

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 15

If letters are coded as (position mod 9), 'PYTHON' becomes?
Modular coding: P=16%9=7, Y=25%9=7, T=20%9=2, H=8%9=8, O=15%9=6, N=14%9=5 → concatenated = 772865

Question 16

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 17

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 18

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 19

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 20

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
Previous Worksheet Next Worksheet