Number-Letter Codes - Intermediate-Advanced Level: ASCII patterns INTERMEDIATE-ADVANCED

Strategic expert challenge ★ for number-letter codes: 20 intermediate-advanced-level problems. Worksheet 19 of 30 - Focus: ASCII patterns. Develop expertise in letter value codes, numeric equivalents, alphabet numbering with step-by-step solutions. Ideal for advanced developing learners targeting advanced concepts with increasing complexity.

📝 Worksheet 19 of 30 • 20 questions • ⏱️ Estimated time: 20 minutes • 🎯 Intermediate-advanced level

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

Question 1

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 'CAT' coded as?
Digit sum coding: C=3→digit_sum=3, A=1→digit_sum=1, T=20→digit_sum=2 → concatenated = 312

Question 2

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 3

If A=2, B=3, C=5, D=7, E=11... (prime numbers in order), what is 'DOG' coded as?
Prime coding: D→7, O→47, G→17 → concatenated = 74717

Question 4

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 5

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

Question 6

If each letter is shifted forward by 4 positions (A→E), what is 'DOG' coded as?
Shift coding: D→H(+4), O→S(+4), G→K(+4) → HSK

Question 7

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 8

If each letter is shifted forward by 1 positions (A→B), what is 'BUS' coded as?
Shift coding: B→C(+1), U→V(+1), S→T(+1) → CVT

Question 9

If each letter is shifted forward by 5 positions (A→F), what is 'BUS' coded as?
Shift coding: B→G(+5), U→Z(+5), S→X(+5) → GZX

Question 10

If each letter is coded as the square of its position (A=1→1, B=2→4, C=3→9...), what is 'ACE' coded as?
Square coding: A=1²=1, C=3²=9, E=5²=25 → concatenated = 1925

Question 11

If each letter is coded as its ASCII value (A=65, B=66...), what is 'ANT' coded as?
ASCII coding: A=65, N=78, T=84 → concatenated = 657884

Question 12

For 'DEF', 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:D→4, Pos2:E→E, Pos3:F→6 → 4E6

Question 13

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 14

If a word's code is the product of its letter positions, what is 'BEAR's code?
Product calculation: B=2 × E=5 × A=1 × R=18 = 180

Question 15

If each letter is coded as the square of its position (A=1→1, B=2→4, C=3→9...), what is 'DOG' coded as?
Square coding: D=4²=16, O=15²=225, G=7²=49 → concatenated = 1622549

Question 16

If each letter is coded as the square of its position (A=1→1, B=2→4, C=3→9...), what is 'ACE' coded as?
Square coding: A=1²=1, C=3²=9, E=5²=25 → concatenated = 1925

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 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 19

If A=1, B=2, C=3... Z=26, then 'LION' is coded as?
Letter to number: L=12 + I=9 + O=15 + N=14 → concatenated = 1291514

Question 20

For 'FISH', odd positions use position coding, even positions use shift coding. What is the result?
Alternating coding: F→6(pos), I→K(+2), S→19(pos), H→J(+2) → 6K19J
Previous Worksheet Next Worksheet