Validation and Verification
Validation and Verification
Validation and Verification
Verification
Validation
Validation is the process of checking your data for errors before processing
is done.
Types of validation checks
Data type check ensures that the characters entered are of the correct data
type.
Example:
Letters will not be accepted in a field defined to store numbers.
Consistency Checks
This check is used to decide if the data entered has the correct amount of
characters or digits. It ensures that the amount characters or digits entered
isn’t shorter or longer than the prescribed length.
Example a phone number must have a certain amount of digits:
1 (867) 000-0000
Check Digits
Check digit is used to ensure that a range of numbers has been entered in
correct sequence. The check digit is the final number in the sequence. The
computer will carry out the check by generating a check digit for the numbers
entered, using an algorithm. It will then compare the answer received to the
check digit entered. If there is a match, the data is entered correctly.
The check digit is generated from an algorithm.
Example:
The check digit ‘6’ is on the right of the image below
Parity Checks
Which validation check will you use to ensure that each of the following
pieces of data below are entered correctly:
1. The birth year of a student.
2. The day of the month.
3. Email address on an application form for a weekly email news subscription.
4. A cell number.
5. An a book’s ISBN which contains 13 digits.
Verification