Validation and Verification

Slides:



Advertisements
Similar presentations
©G. Millbery 2003Data, Information, Knowledge and Processing Slide 1 Validation  Making sure that the data value entered is sensible and reasonable 
Advertisements

2.2 Validation & Verification
Commercial Data Processing Lesson 3: Data Validation.
Validation and Verification Today will look at: The difference between accuracy and validity Explaining sources of errors and how they could be overcome.
© All Rights Reserved Barcodes How does a barcode reader work?
What Are File Maintenance Techniques and Validation Techniques?
Validation and Verification
RNJ 10/02/091 3 Computing System Fundamentals 3.6 Errors Prevention and Detection.
 By the end of this, you should be able to state the difference between DATE and INFORMAITON.
Encoding, Validation and Verification Chapter 1. Introduction This presentation covers the following: – Data encoding – Data validation – Data verification.
What is Validation Understanding Validation (Different from Verification)
GCSE ICT Checking data. Why do errors happen? Computers do not make mistakes. However if incorrect data is put in errors happen. In ICT this is called.
3.2 Data Checking.
Data entry: Validation
Checking data GCSE ICT.
Information Processing and Presentation by Rico Yu.
Barcodes What information does this barcode tell the shop?
System Development Lifecycle Verification and Validation.
A-Level Computing#BristolMet Session Objectives#14 MUST Identify different forms of output from a system SHOULD Describe the suitability of different outputs.
Data and information. Information and data By the end of this, you should be able to state the difference between DATE and INFORMAITON.
Systems Life Cycle. Know the elements of the system that are created Understand the need for thorough testing Be able to describe the different tests.
Databases (2) Lesson Objective: Understand the purpose of DBMS. Understand data types, queries, forms and reports. Learning Outcome: Make a data table.
AS computing Validation and verification. Introduction It is important to maintain the integrity of any database of information. Any data item must always.
AS Level ICT Data entry: Problems with errors. Garbage in; Garbage out If incorrect data is entered into a data management system, the results of any.
Verification & Validation. Batch processing In a batch processing system, documents such as sales orders are collected into batches of typically 50 documents.
Review of Data Capture. Input Devices What input devices are suitable for data entry? Keyboard Voice Bar Code MICR OMR Smart Cards / Magnetic Stripe cards.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
Data Verification and Validation
1 AQA ICT AS Level © Nelson Thornes 2008 Good quality data and information Data terms.
Data Validation.
TIMOTHY SERVINSKY PROJECT MANAGER CENTER FOR SURVEY RESEARCH Data Preparation: An Introduction to Getting Data Ready for Analysis.
Data Management Data Verification Data Validation.
Chapter 3 Data Control Ensure the Accurate and Complete data is entering into the data processing system.
SIGNIFICANT FIGURES AND DECIMAL PLACES
Validation & Verification Today will look at: The difference between accuracy and validity Explaining sources of errors and how they could be overcome.
Chapter 11 Data Input and Output. Input Data Capture Forms Data can be collected using a data capture form or questionnaire that is printed on a piece.
Input, Output and Processing.. What data needs to be input into the system? Identify the sources – i.e. where does the data come from? What is the volume.
Data Capture Forms What are they?. Example 1 Example 2.
GCSE ICT LESSON 5 Booklet Sections: 6 & 7 Data Capture & Checking Data.
Microsoft Access 2016 Design and Create Tables to Store Data
Validation and verification 1.2
3.1.1 Data, Information, knowledge and processing
DATA TYPES.
IGCSE 4 Cambridge Designing a database table Computer Science
Creating a database table
DATA COLLECTION Data Collection Data Verification and Validation.
Databases.
DATA INPUT AND OUTPUT.
Unit 16 – Database Systems
Microsoft Access 2013 Design and Create Tables to Store Data
Validation Bury College.
Databases.
Design and Create Tables to Store Data Chapter 2
Databases.
IT Applications Theory Slideshows
Objectives TO UNDERSTAND THAT CAPTURING DATA IS VALIDATED AND VERIFIED TO CHECK THAT IT IS REASONABLE AND CORRECT.
How can errors in data occur when using an ICT system?
Name: Form: What Are Bar-codes
Designing data capture forms
JavaScript Form Validation
Database Design and Development
Group 2 module 2 obj 15 explain the meaning of terms related to the security of Information Technology Systems.
Chapter 7: Input Validation
Verification and Validation
Introduction to Databases
Commercial Data Processing
Entering Records.
Presentation transcript:

Validation and Verification Y11 Databases

Validation and Verification… Once you have a set of data, you need to enter it into your database system You need to devise methods to reduce the number of errors that may occur when entering data GIGO (Garbage In Garbage Out) Two of the techniques used are Validation and Verification…

Validation Validation is performed by the computer at the point when you enter data You create a set of rules Validation aims to make sure that data is sensible, reasonable, complete and within acceptable boundaries Validation does not check that the data is correct! For example, if you type in 07/08/07 as a date of birth when it should have been 08/07/08 – validation will not pick this up!

Range Check A range check is commonly used when you are working with data which consists of numbers, currency or dates/times A range check allows you to set suitable boundaries:

Type Check Setting the correct data type for the field setting a field as NUMBER so that only “11” can be entered rather than “Eleven”

Check Digit Check digits are used to make sure a range of numbers has been entered correctly For example, barcodes and ISBN numbers ISBN 1 84146 201 2 The “2” is the check digit The computer will perform a complex calculation based on the numbers provided and then compare the answer to the check digit

Length Check

Lookup

Picture/Format Check

Presence Check

Common Errors

Verification

Verification Methods