Data Validation and Verification Flashcards

1
Q

What is data validation?

A

Validation is an automatic computer process of ensuring that the input data supplied to a system satisfies a set of rules such that it is sensible, complete, reasonable and within acceptable boundaries. It does not check the accuracy of data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the types of validation?

A

Presence check, type check, range check, length check, format check and check digit.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is presence check?

A

It ensures the data is entered and all necessary fields are present. It can prevent receiving partial information which cannot be rectified later.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is type check?

A

It ensures that the data is of a suitable data type.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is length check?

A

It ensures that the data has the expected number of characters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is range check?

A

It ensures that the data is scoped within an expected pre-determined boundary.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is format check?

A

It ensures that the data matches a required arrangement or pattern. This checks that the data is of the right format, that it is made up of the correct combination of alphabetical and numeric characters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is check digit?

A

Check digit allows the data to be self-checking. The check digit is a single digit added to the code number. The check digit is calculated using a specified algorithm that uses values and weights of the digits in the data from other digits in the number.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is data verification?

A

Data verification is performed to ensure that the data entered matches the original source exactly. It does not check the accuracy of data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the types of verification?

A

Double entry, proofreading

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is double entry?

A

It consists of entering the data twice and comparing both copies.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is proofreading?

A

It consists of having a person check the data entered against the original document.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are the types of error made?

A

Transcription error and transposition error

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is transcription error?

A

A transcription error is a specific type of data entry error that is commonly made by human operators or optical character recognition programs. Human transcription errors are commonly made by the result of typographical mistakes.

e.g. gtegory instead of gregory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is transposition error?

A

Transposition errors occur when characters have switched places. They are almost always human in origin.

e.g. gergory instead of gregory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do transcription errors occur?

A

They occur when the results of a scan of printed matter is compromised or in an unusual font.

17
Q

How do transposition errors occur?

A

The most common way for characters to be transposed is when a user is touch typing at a speed that makes them input one character before the other.

18
Q

What is check digit, modulo 11?

A

It is a form of redundancy check used for error detection on identification numbers.