Number-Letter Codes - Intermediate Level: letter-number mapping INTERMEDIATE

Quick mental agility β˜… session: 20 intermediate-level number-letter codes questions. Worksheet 17 of 30 - Focus: letter-number mapping. Practice positional codes, ASCII patterns, letter value codes with instant feedback. Great for mid-level students needing moderate complexity with mixed patterns practice.

πŸ“ Worksheet 17 of 30 β€’ 20 questions β€’ ⏱️ Estimated time: 20 minutes β€’ 🎯 Intermediate level

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

Question 1

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 2

If A=26, B=25, C=24... Z=1 (reverse order), then 'AXE' is coded as?
Reverse coding: A=26 + X=3 + E=22 β†’ concatenated = 26322

Question 3

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 4

If each letter is coded as its ASCII value (A=65, B=66...), what is 'CAT' coded as?
ASCII coding: C=67, A=65, T=84 β†’ concatenated = 676584

Question 5

For 'PRS', find the differences between consecutive letter positions (A=1,B=2...). Format as comma-separated values.
Positions: [16, 18, 19] β†’ Differences: [2, 1]

Question 6

If a word's code is the sum of its letter positions (A=1,B=2...), what is 'HORSE's code?
Sum calculation: H=8 + O=15 + R=18 + S=19 + E=5 = 65

Question 7

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 'BAD' coded as?
Digit sum coding: B=2β†’digit_sum=2, A=1β†’digit_sum=1, D=4β†’digit_sum=4 β†’ concatenated = 214

Question 8

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 9

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 10

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 11

For 'BDF', find the differences between consecutive letter positions (A=1,B=2...). Format as comma-separated values.
Positions: [2, 4, 6] β†’ Differences: [2, 2]

Question 12

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 13

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 14

For 'ACE', find the differences between consecutive letter positions (A=1,B=2...). Format as comma-separated values.
Positions: [1, 3, 5] β†’ Differences: [2, 2]

Question 15

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 16

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 17

If letters are coded as (position mod 8), 'NUMBER' becomes?
Modular coding: N=14%8=6, U=21%8=5, M=13%8=5, B=2%8=2, E=5%8=5, R=18%8=2 β†’ concatenated = 655252

Question 18

If each letter is shifted forward by 5 positions (A→F), what is 'BOOK' coded as?
Shift coding: B→G(+5), O→T(+5), O→T(+5), K→P(+5) → GTTP

Question 19

If A=1, B=2, C=3... Z=26, then 'FROG' is coded as?
Letter to number: F=6 + R=18 + O=15 + G=7 β†’ concatenated = 618157

Question 20

For 'EGG', odd positions use shift coding, even positions use reverse coding. What is the result?
Alternating coding: E→G(+2), G→20(rev), G→I(+2) → G20I
Previous Worksheet Next Worksheet