Impara
Uno o più caratteri mancano nei dati.
Omission errors occur when characters are accidentally left out during data entry. This can happen from skipping a keystroke, misreading source data, or copying errors. The result is a shorter string than the original. These errors can be caught by checking string length first.
Original: ABCD → Error: ABD (C omitted)
- 123456 → 12346 (5 omitted)
- WILLIAMS → WILLAMS (I omitted)
- AB-1234 → AB-124 (3 omitted)
Come riconoscerlo
- Copy is shorter than original
- All present characters match, one is missing
- Check length first as quick filter
Errori comuni
- Not noticing the length difference
- Confusing omission with substitution of similar characters
- Missing repeated character omissions (e.g., 'MISS' vs 'MIS')
Soluzione passo per passo
Trovare l'errore: Originale '123456' vs Dato '12346'
- Verificare lunghezze: originale ha 6 caratteri, dato ha 5
- Confrontare posizione 1: '1' = '1'
- Confrontare posizione 2: '2' = '2'
- Confrontare posizione 3: '3' = '3'
- Confrontare posizione 4: '4' = '4'
- Confrontare posizione 5: '5' vs '6' - differenza, manca '5'
- La cifra '5' è stata omessa dalla posizione 5
Risposta: Errore di omissione: il carattere '5' manca dalla posizione 5