Topic 4: Validation and Verification Flashcards
What is validation of data?
Validation is a process that ensures data being put into a system is sensible and reasonable.
A process that ensures data being put into a system is sensible and reasonable is what?
Validation of data.
Name and describe how one validation method could be used in a website registration form.
Name: A software developer will write a short piece of code that prevents data being entered if it doesn’t fit certain rules.
Describe: A website registration form would require a presence check for essential fields such as name and address.
A format check could be used to make a date of birth is entered as DD/MM/YYYY.
A range check could be used to ensure that the year of birth makes sense for an adult between the ages of 16 - 99.
A presence check is a type of what method?
Validation
A format check is a type of what method?
Validation
A range check is a type of what method?
Validation
What is a presence check?
Occurs for essential fields on forms, i.e. name and address.
What is a format check?
Occurs to make sure that the format of information is correct, i.e. to make sure that a date of birth is entered as DD/MM/YYYY.
What is a range check?
Occurs to make sure that information makes sense, i.e. to make sure that a year of birth makes sense for an adult between the ages of 16-99.
Give an example of data validation in a website registration form that requires ‘presence’.
A website registration form usually has a validation check which prevents someone from leaving if they have left a essential field blank. These would likely be things like first name, or address.
What is verification of data?
A verification check involves comparing two sources of the same data to ensure they are identical.
A process that involves comparing two sources of the same data to ensure they are identical is known as what?
Verification check.
What is an example of a verification check?
An example of a verification check is needing to enter a new password twice. This is also known as double entry.
Needing to enter a new password twice is an example what kind of what kind of check?
Verification check.
An employee proof reading data on a computer to ensure it is the same as the original paper source is an example of what kind of verification?
Manual verification.