Advertentie

Omzettingsfouten

Aangrenzende tekens zijn van positie verwisseld.

Leren

Aangrenzende tekens zijn van positie verwisseld.

Transposition errors occur when two adjacent characters swap positions. This is one of the most common data entry errors, often caused by typing too quickly or by dyslexia. Examples include typing '1324' instead of '1234' or 'hte' instead of 'the'. These errors are subtle because all the correct characters are present.

Original: ABCD → Error: ABDC (C and D swapped)

  • 12345 → 12435 (3 and 4 transposed)
  • ABCDEF → ABDCEF (C and D transposed)
  • AB-1234 → AB-1324 (2 and 3 transposed)

Zo herkent u het

  • Same characters, but two adjacent ones are in reversed order
  • Length remains the same
  • Often occurs in the middle of strings

Veelgemaakte fouten

  • Confusing transposition with substitution
  • Missing subtle swaps in long strings
  • Not checking adjacent pairs systematically

Stapsgewijze uitwerking

Vind de fout: Origineel '12345' vs Gegeven '12435'

  1. Positie 1 vergelijken: '1' = '1'
  2. Positie 2 vergelijken: '2' = '2'
  3. Positie 3 vergelijken: '3' vs '4' - verschil gevonden!
  4. Positie 4 vergelijken: '4' vs '3' - verschil gevonden!
  5. Positie 5 vergelijken: '5' = '5'
  6. Patroon: posities 3 en 4 bevatten verwisselde tekens

Antwoord: Omzettingsfout: '3' en '4' verwisseld op posities 3-4

Oefenadvies

Foutcontrole

Advertentie