While implementing an invoice system, Lily has implemented a database control which checks that new transactions are matched to those previously input to ensure that they have not already been entered.
Which of the following control is implemented by Lily?
Click on the arrows to vote for the correct answer
A. B. C. D.B.
In a duplicate check control new transaction are 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.
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.
Lily has implemented a duplicate check control. The purpose of this control is to prevent the same transaction from being entered twice in the database.
A range check control ensures that the data entered is within a specified range or set of values. For example, if a user is entering data for a person's age, the range check control would ensure that the entered age is between 0 and 120.
An existence check control ensures that the data being entered exists in another database or system. For example, if a user is entering a customer's information into a system, the existence check control would verify that the customer's information already exists in the system's customer database.
A reasonableness check control is used to identify transactions that are outside of expected ranges or values. For example, if a user enters a transaction for a purchase of 10,000 items when the typical purchase is only 10 items, the reasonableness check control would flag this transaction for further review.
In summary, Lily has implemented a duplicate check control which compares new transactions with previously entered transactions to prevent duplication of data.