Verifying and Validating Data Flashcards
(12 cards)
What is the process of checking that data has not changed during transfer or input to a computer called?
Verifying Data
The aim is to ensure that data is copied or entered exactly as intended.
What is one method of verifying data that requires data to be entered twice?
Double Entry
This method compares the two entries for discrepancies.
What method of data verification uses parity bits?
Parity Check
It checks whether data has been altered during transmission.
What does a checksum do in data verification?
Calculates a value based on the data to detect errors after transmission or storage.
This value can be used to confirm the integrity of the data.
In the context of transferring a file, what does verification ensure?
That the file has reached its destination successfully and that its contents are unchanged.
What is the purpose of validating data?
To check that data meets certain predefined criteria before it is processed or used.
What type of validation check ensures a value falls within a specified range?
Range Check
For example, age should be between 0 and 120.
What does a presence check verify?
That important data fields are not left empty.
What does a length check ensure?
That data contains the correct number of characters
For example, a phone number has 10 digits.
What type of validation check verifies that data is in a specified format?
Format Check
For example, a date in the format DD/MM/YYYY.
What does a character check ensure?
That data contains only permissible characters
For example, an email address should include ‘@’.
What does a type check confirm about data?
That data is of the correct data type
For example, numerical fields should not contain letters.