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'
- Positie 1 vergelijken: 'J' = 'J'
- Positie 2 vergelijken: 'O' = 'O'
- Positie 3 vergelijken: 'H' = 'H'
- Positie 4 vergelijken: 'N' = 'N'
- Positie 5 vergelijken: 'S' = 'S'
- Positie 6 vergelijken: 'O' vs '0' - verschil gevonden
- Positie 7 vergelijken: 'N' = 'N'
- De letter 'O' is vervangen door het cijfer '0' (nul)
Antwoord: Substitutiefout: letter 'O' vervangen door cijfer '0' op positie 6