Pubblicità

Errori di Sostituzione

Un carattere è sostituito con un carattere diverso.

Impara

Un carattere è sostituito con un carattere diverso.

Substitution errors occur when one character is incorrectly replaced with another. This often happens with visually similar characters (0 vs O, 1 vs l, 5 vs S) or adjacent keyboard keys. The string length stays the same, but one character is wrong. These errors are common in manual data entry.

Original: ABCD → Error: ABXD (C replaced with X)

  • 12345 → 12845 (3 replaced with 8)
  • JOHNSON → JOHNS0N (O replaced with zero)
  • AB-1234 → AB-1284 (3 replaced with 8)

Come riconoscerlo

  • One character is different, all others match
  • Length remains the same
  • Often involves similar-looking characters

Errori comuni

  • Confusing substitution with transposition
  • Missing errors with visually similar characters (0/O, 1/l/I)
  • Not comparing character by character

Soluzione passo per passo

Trovare l'errore: Originale 'JOHNSON' vs Dato 'JOHNS0N'

  1. Confrontare posizione 1: 'J' = 'J'
  2. Confrontare posizione 2: 'O' = 'O'
  3. Confrontare posizione 3: 'H' = 'H'
  4. Confrontare posizione 4: 'N' = 'N'
  5. Confrontare posizione 5: 'S' = 'S'
  6. Confrontare posizione 6: 'O' vs '0' - differenza trovata
  7. Confrontare posizione 7: 'N' = 'N'
  8. La lettera 'O' è stata sostituita con la cifra '0' (zero)

Risposta: Errore di sostituzione: lettera 'O' sostituita con cifra '0' alla posizione 6

Indicazioni per la pratica

Controllo Errori

Pubblicità