Which of the following control make sure that input data comply with predefined criteria maintained in computerized table of possible values?
Click on the arrows to vote for the correct answer
A. B. C. D.B.
In table lookups input data comply with predefined criteria maintained in computerized table of possible values.
For example, an input check enters a city code of 1 to 10
This number corresponds with a computerize table that matches a code to a city name.
For CISA exam you should know below mentioned data validation edits and controls Sequence Check " The control number follows sequentially and any sequence or duplicated control numbers are rejected or noted on an exception report for follow-up purposes.
For example, invoices are numbered sequentially.
The day's invoice begins with 12001 and ends with 15045
If any invoice larger than 15045 is encountered during processing, that invoice would be rejected as an invalid invoice number.
Limit Check " Data should not exceed a predefined amount.
For example, payroll checks should not exceed US $ 4000
If a check exceeds US $ 4000, data would be rejected for further verification/authorization.
Validity Check " Programmed checking of data validity in accordance with predefined criteria.
For example, a payroll record contains a field for marital status and the acceptable status codes are M or S.
If any other code is entered, record should be rejected.
Range Check " Data should not exceed a predefined range of values.
For example, product type code range from 100 to 250
Any code outside this range should be rejected as an invalid product type.
Reasonableness check " Input data are matched to predefined reasonable limits or occurrence rates.
For example, a widget manufacturer usually receives an order for no more than 20 widgets.
If an order for more than 20 widgets is received, the computer program should be designed to print the record with a warning indicating that the order appears unreasonable.
Table Lookups " Input data comply with predefined criteria maintained in computerized table of possible values.
For example, an input check enters a city code of 1 to 10
This number corresponds with a computerize table that matches a code to a city name.
Existence Check " Data are entered correctly and agree with valid predefined criteria.
For example, a valid transaction code must be entered in transaction code field.
Key verification " The keying process is repeated by a separate individual using a machine that compares the original key stroke to the repeated keyed input.
For ex.
the worker number is keyed twice and compared to verify the keying process.
Check digit " a numeric value that has been calculated mathematically is added to a data to ensure that original data have not been p[ altered or incorrect, but Valid, value substituted.
This control is effective in detecting transposition and transcription error.
For ex.
A check digit is added to an account number so it can be checked for accuracy when it is used.
Completeness check " a filed should always contain data rather than zero or blanks.
A check of each byte of that field should be performed to determine that some form of data, or not blanks or zeros, is present.
For ex.
A worker number on a new employee record is left blank.
His is identified as a key in filed and the record would be rejected, with a request that the field be completed before the record is accepted for processing.
Duplicate check " new transaction is matched to those previously input to ensure that they have not already been entered.
For ex.
A vendor invoice number agrees with previously recorded invoice to ensure that the current order is not a duplicate and, therefore, the vendor will not be paid twice.
Logical relationship check " if a particular condition is true, then one or more additional conditions or data input relationship may be required to be true and consider the input valid.
For ex.
The hire data of an employee may be required to be true and consider the input valid.
For ex.
The hire date of an employee may be required to be more than 16 years past his her date of birth.
The following were incorrect answers: Range Check " Data should not exceed a predefined range of values.
For example, product type code range from 100 to 250
Any code outside this range should be rejected as an invalid product type.
Existence Check " Data are entered correctly and agree with valid predefined criteria.
For example, a valid transaction code must be entered in transaction code field.
Reasonableness check " Input data are matched to predefined reasonable limits or occurrence rates.
For example, a widget manufacturer usually receives an order for no more than 20 widgets.
If an order for more than 20 widgets is received, the computer program should be designed to print the record with a warning indicating that the order appears unreasonable.
The control that makes sure input data comply with predefined criteria maintained in a computerized table of possible values is called "Table lookups".
Table lookups are a type of data validation check that compares the values entered into a field to a pre-defined list of acceptable values. This pre-defined list is typically stored in a computerized table of possible values.
Table lookups are commonly used in database management systems to ensure data accuracy and completeness. They are particularly useful in situations where data entry errors are likely to occur or where data consistency is critical.
Here's how table lookups work:
For example, let's say that a company has a database of employee information. In this database, there is a field for "Department". The company has pre-defined a list of acceptable departments, including "Sales", "Marketing", "Accounting", and "Human Resources". If an employee's department is entered as "IT" instead of one of the pre-defined departments, the system would generate an error message, indicating that the value is not acceptable.
In summary, table lookups are a data validation control that compares entered values to a pre-defined list of acceptable values in a computerized table of possible values. This helps ensure data accuracy and completeness in database management systems.