Number-Letter Codes - Advanced Level: dual coding ADVANCED

Level up your number-letter codes skills with this challenging mix. 20 advanced-level problems await in Worksheet 24 of 30. Focus area: dual coding. Learn positional codes, ASCII patterns, letter value codes through systematic practice. Designed for advanced learners seeking complex scenarios and multi-step problems.

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

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

Question 1

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 2

If A=1, B=1, C=2, D=3, E=5, F=8... (Fibonacci sequence), what is 'CAT' coded as?
Fibonacci coding: C=2, A=1, T=6765 β†’ concatenated = 216765

Question 3

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 4

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 5

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

Question 6

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 7

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

Question 8

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

Question 9

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 10

If letters are coded as (position mod 10), 'ALPHABET' becomes?
Modular coding: A=1%10=1, L=12%10=2, P=16%10=6, H=8%10=8, A=1%10=1, B=2%10=2, E=5%10=5, T=20%10=0 β†’ concatenated = 12681250

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

If letters are coded as (position mod 7), 'CODING' becomes?
Modular coding: C=3%7=3, O=15%7=1, D=4%7=4, I=9%7=2, N=14%7=0, G=7%7=0 β†’ concatenated = 314200

Question 13

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 14

If A=1, B=2, C=3... Z=26, then 'FISH' is coded as?
Letter to number: F=6 + I=9 + S=19 + H=8 β†’ concatenated = 69198

Question 15

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 16

For 'BED', odd positions use reverse coding, even positions use shift coding. What is the result?
Alternating coding: B→25(rev), E→G(+2), D→23(rev) → 25G23

Question 17

If A=26, B=25, C=24... Z=1 (reverse order), then 'BAD' is coded as?
Reverse coding: B=25 + A=26 + D=23 β†’ concatenated = 252623

Question 18

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 'BED' coded as?
Digit sum coding: B=2β†’digit_sum=2, E=5β†’digit_sum=5, D=4β†’digit_sum=4 β†’ concatenated = 254

Question 19

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 20

If each letter is shifted forward by 1 positions (A→B), what is 'CAR' coded as?
Shift coding: C→D(+1), A→B(+1), R→S(+1) → DBS
Previous Worksheet Next Worksheet