INFORMATION PROCESSING - Validation & Verification
INFORMATION PROCESSING - Validation & Verification
Information Technology
VALIDATION AND
VERIFICATION
VALIDATION
range checks
reasonableness checks
data type checks
consistency checks
presence checks
length checks
format checks
RANGE CHECK
Which validation check will you use to ensure that each of the
following pieces of data below are entered correctly:
1.The birth year of a student.
2.The day of the month.
3.Email address on an application form for a weekly email news
subscription.
4.A cell number.
VERIFICATION
A sequential file is similar to a serial file, but the records are sorted in a
particular sequence. With sequential access the records are in order. Therefore
if just one record is required, the method is slow but if all the records are required,
it is very fast. The main disadvantage to modifying records in both serial and
sequential files is that the entire file must be read and then the records written to
a new file.
Examples of sequential files
A batch processing system, such as a payroll system uses sequential access
where the record for each employee is accessed in sequence and the
appropriate pay calculated.
Invoices for customers sorted on customer number
Class registers sorted on last name
DIRECT ACCESS FILE ORGANIZATION