Verification Flashcards
What is verification?
-Process of checking data entered onto a computer system matches the original source.
What is a visual check?
-Reading the data displayed on screen, comparing with the original data. If it matches, it passes.
What happens if data is wrong in the original source?
-Verification alone will not ensure data is correct. If it is wrong on the original source, it will pass the checks.
What is double data entry?
-Data is imputed twice, two data items are compared to see if they matched eg. password for email address
What is hash total?
-When entering/inputing data a hash total is calculated by adding value from an input field together.
-User manually adds up the values.
-Once data is entered/inputed, computer will compare the hash totals.
-If it matches the manual hash total, it is accepted.
What is control total?
-Used a field with meaning eg. number of batches
What is a parity check?
(different than others)
-Used to find errors during data transmission (each byte), checked individually.
-2 types:
-ODD parity: total number of bits (1010) in a byte (1s or 0s) must be an odd number.
-EVEN parity: total number of bits in a byte must be an even number.
-Only checks for errors on transmission, does not correct it.
What is a check sum?