2.2 Validation & Verification

Slides:



Advertisements
Similar presentations
Verification & Validation
Advertisements

©G. Millbery 2003Data, Information, Knowledge and Processing Slide 1 Validation  Making sure that the data value entered is sensible and reasonable 
Commercial Data Processing Lesson 3: Data Validation.
3.1 Data and Information –The rapid development of technology exposes us to a lot of facts and figures every day. –Some of these facts are not very meaningful.
Validation and Verification Today will look at: The difference between accuracy and validity Explaining sources of errors and how they could be overcome.
Database Design IST 7-10 Presented by Miss Egan and Miss Richards.
Copyright © 2015 Pearson Education, Inc. Processing Integrity and Availability Controls Chapter
Chapter 10 Information Systems Controls for System Reliability—Part 3: Processing Integrity and Availability Copyright © 2012 Pearson Education, Inc.
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.
Chapter 8: Systems analysis and design
Encoding, Validation and Verification Chapter 1. Introduction This presentation covers the following: – Data encoding – Data validation – Data 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.
DATABASE. Computer-based filing systems Information in computer-based filing systems are stored in DATA FILES. A FILE is a collection of RELATED RECORDS.
Data entry: Validation
Checking data GCSE ICT.
Checking data Chapter 7 Prepared by:Sir Mazhar Javed.
Information Processing and Presentation by Rico Yu.
Objectives of Control The objectives of control are:  To ensure that all data are processed  To preserve the integrity of maintained data  To detect,
GCSE Computing#BristolMet Session Objectives# 20 MUST describe a database and discuss the legal implications of storing personal information SHOULD explain.
Manipulating data Data management: validation and verification.
System Development Lifecycle Verification and Validation.
Collecting Data Types, coding, accuracy, file formats and the effect of data loss.
1.The Nature, Impact and Issues of Information Technology 1.6Strategies used to Prevent Deliberate and Accidental Illegal Actions.
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.
Test and Review chapter State the differences between archive and back-up data. Answer: Archive data is a copy of data which is no longer in regular.
Databases (2) Lesson Objective: Understand the purpose of DBMS. Understand data types, queries, forms and reports. Learning Outcome: Make a data table.
DATA ERRORS. Introduction The processing of incorrect data can produce ridiculous and embarrassing output. Errors can take time to sort out and can be.
Verification & Validation F451 AS Computing. Why check data? It’s useless if inaccurate. Also, wrong data: Can be annoying Can cost a fortune Can be dangerous.
6.1 Inference for a Single Proportion  Statistical confidence  Confidence intervals  How confidence intervals behave.
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.
1 3 Computing System Fundamentals 3.6 Errors Prevention and Recovery.
Errors!. Where do errors occur? Anywhere data is transferred, processed, stored, etc. Input user error Storage magnetic hard drive errors physical tampering.
Data Collection. Data Capture This is the first stage involved in getting data into a computer Various input devices are used when getting data to the.
Data Verification and Validation
Data Validation.
Data Management Data Verification Data Validation.
Chapter 3 Data Control Ensure the Accurate and Complete data is entering into the data processing system.
Verification & Validation
Validation & Verification Today will look at: The difference between accuracy and validity Explaining sources of errors and how they could be overcome.
HEI/OCAN College Access Program Data Submissions.
Software. Because databases can get very big, it is important to decide exactly what is going to be stored in each field. Fields can be text, number,
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.
Validation and verification 1.2
3.1.1 Data, Information, knowledge and processing
DATA TYPES.
Highcliffe ICT Department
DATA INPUT AND OUTPUT.
Processing Integrity and Availability Controls
Database Management Systems
Validation Bury College.
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?
Databases Software This icon indicates the slide contains activities created in Flash. These activities are not editable. For more detailed instructions,
Verification and Validation
Introduction to Databases
Validation and Verification
Presentation transcript:

2.2 Validation & Verification In this section of the course, you must: Understand the difference between accuracy and validity Explain sources of errors and how they could be overcome Understand the difference between validation and verification Describe appropriate data validation techniques

Accuracy and Validity Accuracy and validity are not the same thing: A valid sentence is one that has the correct grammar – e.g. a noun clause, a verb clause, and another noun clause, such as “the cat sat on the mat” Most people would probably say that an accurate sentence is one that they can verify is true. If you’ve got a cat and it’s on your mat, then the above example is both valid and accurate. If you haven’t even got a cat, then it’s valid but inaccurate! Easy!

Sources of Error How do errors occur in data-entry or transmission?

Verification Verification means checking that the data has been entered correctly; that is that there have been no typing errors, etc., when inputting the data. It is a check for accuracy. Some systems check this by making the user enter the information twice, and then checking that both copies are the same. If they are not, then a mistake must have been made. This is the reason you have to enter the new password twice when you change your network password. Verification is usually a human process.

Validation & Verification Validation means checking that the data makes sense, for example that there are no letters in a field that is supposed to contain only numbers, or that the user hasn’t entered an invalid date, e.g. 30th February. Validation checks validity This is much easier for the computer to perform on its own, as you can give it a set of rules to follow – it would be very difficult for the computer to know whether the data were actually right!

Sources of Error How do errors occur in data-entry or transmission? You could be given the wrong information Data could be omitted Transcription errors could occur The data could be damaged Operator error could lead to double-entry or a record being missed Hardware failure Electrical interference during transmission

Types of Validation There are different types of validation check: Presence – must the data be there? Format (aka picture) – e.g. currency, NI number Range check Lookup – i.e. multiple-choice from either a fixed list or another database table Batch checks – are there the right number of records, or are the totals correct? Check digits and parity