Aprender
Faltan uno o más caracteres en los datos.
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)
Cómo reconocerlo
- Copy is shorter than original
- All present characters match, one is missing
- Check length first as quick filter
Errores comunes
- Not noticing the length difference
- Confusing omission with substitution of similar characters
- Missing repeated character omissions (e.g., 'MISS' vs 'MIS')
Resolución paso a paso
Encuentre el error: Original '123456' vs Dado '12346'
- Verificar longitudes: original tiene 6 caracteres, dado tiene 5
- Comparar posición 1: '1' = '1'
- Comparar posición 2: '2' = '2'
- Comparar posición 3: '3' = '3'
- Comparar posición 4: '4' = '4'
- Comparar posición 5: '5' vs '6' - diferencia, falta '5'
- El dígito '5' fue omitido de la posición 5
Respuesta: Error de omisión: el carácter '5' falta en la posición 5