Number-Letter Codes - Expert Level: mixed operations EXPERT

Intensive progress check 🎯 drill: 20 expert-level number-letter codes questions. Worksheet 30 of 30 hones your mixed operations abilities. Practice letter-number mapping, positional codes, ASCII patterns under timed conditions. Best for expert-level students seeking challenging problems and time-bound practice.

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

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

Question 1

If each letter is coded as the square of its position (A=1β†’1, B=2β†’4, C=3β†’9...), what is 'BAD' coded as?
Square coding: B=2Β²=4, A=1Β²=1, D=4Β²=16 β†’ concatenated = 4116

Question 2

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 3

If A=2, B=3, C=5, D=7, E=11... (prime numbers in order), what is 'BIRD' coded as?
Prime coding: B→3, I→23, R→61, D→7 → concatenated = 323617

Question 4

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 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=1, B=2, C=3... Z=26, then 'WOLF' is coded as?
Letter to number: W=23 + O=15 + L=12 + F=6 β†’ concatenated = 2315126

Question 7

For 'FISH', odd positions use shift coding, even positions use position coding. What is the result?
Alternating coding: F→H(+2), I→9(pos), S→U(+2), H→8(pos) → H9U8

Question 8

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

Question 9

If A=26, B=25, C=24... Z=1 (reverse order), then 'PIG' is coded as?
Reverse coding: P=11 + I=18 + G=20 β†’ concatenated = 111820

Question 10

If A=1, B=2, C=3... Z=26, then 'ACE' is coded as?
Letter to number: A=1 + C=3 + E=5 β†’ concatenated = 135

Question 11

If each letter is coded as its ASCII value (A=65, B=66...), what is 'BED' coded as?
ASCII coding: B=66, E=69, D=68 β†’ concatenated = 666968

Question 12

If each letter is coded as its ASCII value (A=65, B=66...), what is 'DOG' coded as?
ASCII coding: D=68, O=79, G=71 β†’ concatenated = 687971

Question 13

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 'ACE' coded as?
Digit sum coding: A=1β†’digit_sum=1, C=3β†’digit_sum=3, E=5β†’digit_sum=5 β†’ concatenated = 135

Question 14

If a word's code is the product of its letter positions, what is 'DOG's code?
Product calculation: D=4 Γ— O=15 Γ— G=7 = 420

Question 15

If A=2, B=3, C=5, D=7, E=11... (prime numbers in order), what is 'BIRD' coded as?
Prime coding: B→3, I→23, R→61, D→7 → concatenated = 323617

Question 16

For 'DOG', odd positions use reverse coding, even positions use position coding. What is the result?
Alternating coding: D→23(rev), O→15(pos), G→20(rev) → 231520

Question 17

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 18

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 19

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 20

If each letter is shifted forward by 2 positions (A→C), what is 'BOOK' coded as?
Shift coding: B→D(+2), O→Q(+2), O→Q(+2), K→M(+2) → DQQM
Previous Worksheet Next Worksheet