Commercial Data Processing Lesson 3: Data Validation.

Slides:



Advertisements
Similar presentations
Collecting data Chapter 6. What is data? Data is raw facts and figures. In order to process data it has to be collected. The method of collecting data.
Advertisements

including File Management
©G. Millbery 2003Data, Information, Knowledge and Processing Slide 1 Validation  Making sure that the data value entered is sensible and reasonable 
2.2 Validation & Verification
Commercial Data Processing Introduction. What is CDP Commercial Data Processing is the use of powerful computer systems to collect and process large volumes.
Commercial Data Processing Lesson 2: The Data Processing Cycle.
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.
Commercial Data Processing
Database Design IST 7-10 Presented by Miss Egan and Miss Richards.
Validation and Verification
Standard Grade Computing COMMERCIAL DATA PROCESSING CHAPTER 13.
RNJ 10/02/091 3 Computing System Fundamentals 3.6 Errors Prevention and Detection.
TERMS TO KNOW. Programming Language A vocabulary and set of grammatical rules for instructing a computer to perform specific tasks. Each language has.
Computer Based Information Systems Control UAA – ACCT 316 – Fall 2003 Accounting Information Systems Dr. Fred Barbee.
AS Module 2 Information; Management and Management and Manipulation or what to do with data, how to do it, and……... ensure it provides useful information.
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.
IPC144 Introduction to Programming Using C Week 1 – Lesson 2
CDP Standard Grade1 Commercial Data Processing Standard Grade Computing Studies.
Commercial Data Processing is carried out in large companies where computers have been introduced to improve the efficiency of the business. E.g. Banks.
Checking data GCSE ICT.
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,
Topics Covered: Data processing and its need Data processing and its need Steps in data processing Steps in data processing Objectives of data processing.
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.
Information Processing Content covered  Data and information  Information Qualities  Data/Information Processing  Commercial Information Processing.
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.
AS computing Validation and verification. Introduction It is important to maintain the integrity of any database of information. Any data item must always.
CIT PowerPoint presentation Group 4. Unit 1, Chapter 2 Basic Concept on Data DATA AND INFORMATION What is data? Data consists of all sorts of unorganised.
Commercial Data Processing Credit. Management Information CDP makes it easier for managers to control and process the information that is needed in the.
By Phileo Don - Okhuofu. DATA COLLECTION  Data can be collected by the use of questionnaires or data collection forms.  These could be printed out and.
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.
OCR CAMBRIDGE NATIONALS UNIT 1 - UNDERSTANDING COMPUTER SYSTEMS DATA CAPTURE METHODS.
1 3 Computing System Fundamentals 3.6 Errors Prevention and Recovery.
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.
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
Data Validation.
OCR CAMBRIDGE NATIONALS UNIT 1 - UNDERSTANDING COMPUTER SYSTEMS DATA CAPTURE METHODS.
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.
DATA and INFORMATION DATA -raw numbers, words INFORMATION – data that has been turned into something we can understand
Learning Objectives Today we will Learn: The different types of test data.
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.
 At the end of the class students should:  distinguish between data and information.  explain the characteristics and forms of Information Processing.
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
DATA COLLECTION Data Collection Data Verification and Validation.
Data and Information.
Validation Bury College.
SECTION 5: INFORMATION PROCESSING
Databases.
Databases.
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?
Commercial Data Processing
Chapter 7: Input Validation
Verification and Validation
Commercial Data Processing
Validation and Verification
Presentation transcript:

Commercial Data Processing Lesson 3: Data Validation

Commercial Data Processing By the end of this lesson you will be aware of:  GIGO  Validation  Verification  Check Digit  Range Check

Commercial Data Processing data collection & preparation data input data processing & storage output of data Data must be collected before it can be input. It can be collected in from a source document, such as an order form. Data has to be entered into the computer for processing. Inputting data directly ie automatically, reduces the mistakes made by people and makes this stage quicker. Data is processed, ie fed into the program and manipulated. There are 2 types of processing: interactive and batch. Data is then stored on some form of backing store. Processed data is either displayed on a monitor, printed onto paper (often as a turnaround document) or output to a file. The Data Processing Cycle

Commercial Data Processing Error Checking  Data entered into a CDP processing system must be correct.  Data however entered, manually or automatically, cannot be assumed to be correct.  Data has to be checked for errors.  There is a well known adage: Garbage In Garbage Out (GIGO). The Data Processing Cycle

Commercial Data Processing Verification  Verification is needed for passwords and pin numbers.  Data to be verified is entered twice.  The data is then compared if it is exactly the same both times then it is correct, any difference it is wrong. Verification is the process of checking the data for complete accuracy.

Commercial Data Processing Validation  Validated data cannot be guaranteed to be correct.  There are several methods of validating data from check digit, range checks, length checks and more. Validation is the process of checking that the data should be correct and accurate.

Commercial Data Processing Validation Using Check Digit  The last number of a bar code is a Check Digit. Check digit It is a computer check digit which help to makes sure the bar code read by the reader is correct and accurate. A check digit is calculated using the other numbers in the bar code. Eg =22 divide by 5 = 4.4 so check digit 4 So 4 is added to the end of the bar code Calculating the Check Digit

Commercial Data Processing Validation Using Check Digit  1.Scan the bar code. 2.Perform the calculation on the numbers scanned in. 3.Compare the check digit scanned and the check digit calculated IF check digit: scanned = calculated THEN  Bar Code is correct, ie it has been validated OTHERWISE  Bar Code is wrong, and error sounded usually BEEP! Validating The Bar Code

Commercial Data Processing Validation Using Other Methods Type of CheckHow They Work Range Check Checks a number entered is within a specific range. Examples Enter a number between 0 and 100. Enter a month, must be between 1 and 12. Field Length Checks the number of characters entered to see if there are enough. Examples Passwords that must be between 6 and 8 characters.

Commercial Data Processing Answer the following questions in your jotter. 1.Explain that it is important that data must be correct. 2.Explain what is meant by GIGO. 3.Explain the difference between validation and verification. 4.Give an example of when verification is needed and suggest how it can be done. 5.Explain how a check digit can be used in validating data. 6.Explain how a range check can be used in validating data.

Commercial Data Processing Extension Tasks Read the through information contain in ict.com/as_a2/topics/validation_verification/verification_validation/validation1.htm ict.com/as_a2/topics/validation_verification/verification_validation/validation1.htm Past Paper Question