• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/8

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

8 Cards in this Set

  • Front
  • Back
Name the different types of validation.
- Range check
- Character Check
- Format Check
- Length Check
- Existence Check
- Presence Check
What is Validation?
Validation checks that the data input is sensible by comparing it to a set of pre-programmed rules.
What is range check?
An upper and lower limit are set on numerical based data.
What is character check?
When the characters are checked to ensure it is of the correct value/uppercase.

E.g. e-mail addresses.
What is format check?
This is for data that has a set format of letters and numbers.

E.g. National Insurance Number.
What is length check?
Some data should be a set length such as mobile numbers. If a user enters more or less than the set length, an error message will appear.
What is existence check?
Sometimes you want to refer to data that is already stored e.g. a membership number. If you type in a number that doesn't exist in the system then you will get an error.
What is a presence check?
When collecting data there will be some key fields that you definitely want filled in normally indicated by an '*'. If they are left blank, the user will be asked to enter a value.