John had implemented a validation check on the marital status field of a payroll record.
A payroll record contains a field for marital status and acceptable status code are M for Married or S for Single.
If any other code is entered, record should be rejected.
Which of the following data validation control was implemented by John?
Click on the arrows to vote for the correct answer
A. B. C. D.B.
In a validity check control 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.
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 data validation control implemented by John is a Validity Check.
A validity check is a type of data validation control that checks if the data entered in a field matches a pre-defined set of criteria or rules. In this case, the pre-defined set of criteria are the acceptable status codes, which are 'M' for Married or 'S' for Single.
If any other code is entered, the record should be rejected, which means that the data does not meet the pre-defined set of criteria and fails the validity check.
A range check is a type of data validation control that checks if the data entered in a field falls within a specific range of values. For example, if a field is expected to contain a value between 1 and 100, a range check would ensure that any value outside of that range is rejected.
An existence check is a type of data validation control that checks if a field contains a value or not. It is used to ensure that mandatory fields are not left blank.
A reasonableness check is a type of data validation control that checks if the data entered in a field is within a reasonable range of values. It is used to identify outliers or errors that fall outside of the expected range of values.
Therefore, in this scenario, the validation check implemented by John is a Validity Check as it checks if the data entered in the marital status field matches the pre-defined set of criteria (acceptable status codes 'M' or 'S') and rejects any other codes that do not meet the criteria.