3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and...

13
3.2 Data Checking

Transcript of 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and...

Page 1: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

3.2 Data Checking

Page 2: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Overview

Demonstrate knowledge and understanding of data verification and validation techniques.

Identify the most suitable data validation techniques for given situations from type, range, presence, check digit and length.

Page 3: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Verification

A way of checking that data has been entered into a computer system correctly or

transferred correctly from one medium to another.

Page 4: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Verification methods

• Entering the information twice. The first version is compared with the second version and if the two do not match then an error is reported.

• Proof reading the entered data.

Page 5: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Validation

A method of ensuring that data entered into the system is reasonable and correct.

Examples include:Type

RangePresence

Check digitLength

Page 6: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Type

A validation check that makes sure that the characters entered are of the right type.

E.g.• They are all letters• They are all numbers• The first is a letter and the rest numbers

etc.

Page 7: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Range

A validation check that ensures that the data entered is between two defined limits. An

upper limit and a lower limit.E.g.A child at primary school is between 4 and

11.A car driver is between 17 and 80.A car does not need an MOT between 0 and

4 years of age.

Page 8: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Presence

A validation check that makes sure that the data has actually been entered and exists. There is

no missing data.

Page 9: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Check digit• A character placed at the end of a list of

numbers that ensures that the list of numbers has been entered correctly.

• This end character (check digit) is produced using a mathematical formula on the list of enter numbers.

• If, when the numbers are entered and the calculation performed, it does not match the check digit then an error is reported.

Page 10: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Check digit example

Page 11: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Length

A validation check to see if the characters entered are of a certain length.

E.g. • 4 characters • 8 characters• 5 characters

Page 12: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Discussion

Application Type of check that could be used

Making sure all examination marks are entered

Making sure that examination marks are between 0 and 100

Ensuring the number under a bar code has been typed in correctly

Checking a postcode is valid

Checking that a works number has been entered as numbers only

Page 13: 3.2 Data Checking. Overview Demonstrate knowledge and understanding of data verification and validation techniques. Identify the most suitable data validation.

Activity

Check at least 2 other examples for each of the following types of validation check:

• Presence check• Length check• Check digit• Type check