Pubblicità

Codici Lettera-Numero

Ogni lettera è sostituita dalla sua posizione nell'alfabeto.

Impara

Ogni lettera è sostituita dalla sua posizione nell'alfabeto.

Letter-to-number coding is the simplest substitution cipher. Each letter is replaced by its position in the alphabet: A=1, B=2, C=3, and so on up to Z=26. To decode, convert each number back to its corresponding letter. This is often the first code type introduced in aptitude tests.

A=1, B=2, C=3, ... Z=26

  • CAT = 3-1-20
  • HELLO = 8-5-12-12-15
  • 3-15-4-5 = CODE

Come riconoscerlo

  • Numbers 1-26 (no numbers higher than 26)
  • Pattern follows alphabetical position
  • Often separated by hyphens or spaces

Errori comuni

  • Confusing letter positions (common: J=10, not 11)
  • Forgetting alphabet order mid-word
  • Not recognizing double-digit numbers (12 is L, not 1-2)

Soluzione passo per passo

Codifica la parola 'CAT' con codice lettera-numero

  1. C è la 3a lettera dell'alfabeto
  2. A è la 1a lettera dell'alfabeto
  3. T è la 20a lettera dell'alfabeto

Risposta: 3-1-20

Indicazioni per la pratica

Codifica e Decodifica

Pubblicità