Advertentie

Substitutiefouten

Een teken is vervangen door een ander teken.

Leren

Een teken is vervangen door een ander teken.

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)

Zo herkent u het

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

Veelgemaakte fouten

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

Stapsgewijze uitwerking

Vind de fout: Origineel 'JOHNSON' vs Gegeven 'JOHNS0N'

  1. Positie 1 vergelijken: 'J' = 'J'
  2. Positie 2 vergelijken: 'O' = 'O'
  3. Positie 3 vergelijken: 'H' = 'H'
  4. Positie 4 vergelijken: 'N' = 'N'
  5. Positie 5 vergelijken: 'S' = 'S'
  6. Positie 6 vergelijken: 'O' vs '0' - verschil gevonden
  7. Positie 7 vergelijken: 'N' = 'N'
  8. De letter 'O' is vervangen door het cijfer '0' (nul)

Antwoord: Substitutiefout: letter 'O' vervangen door cijfer '0' op positie 6

Oefenadvies

Foutcontrole

Advertentie