The bank reconciliation uncovered a transposition error in the books. This is an example of a

A. preventive control
B. detective control
C. corrective control
D. none of the above


Answer: B

Computer Science & Information Technology

You might also like to view...

Assume that an integer array named intValues contains intNUM elements. Which of the following code segments most efficiently finds the largest element in the array and displays it in a label named lblMaxValue? Assume that values have already been inserted into the array.

a. ```For intIndex = 0 To intNUM – 1 If (intValues(intIndex) > CInt(txtMax.Text)) Then lblMaxValue.Text = intValues(intIndex).ToString End If Next intIndex ``` b. ```intMax = intValues(0) For intIndex = 1 to intValues.length - 1 If intValues(intIndex) > intMax Then intMax = intValues(intIndex) End If Next lblMaxValue.text = intMax.ToString ``` c. ```For intIndex = 0 To intNUM If intValues(intIndex) > intMax Then intValues(intIndex) = intMax End If Next lblMaxValue.Text = intMax.ToString ``` d. ```intMax = intValues(0) For intIndex = 1 To intValues.length If intValues(intIndex) > intMax) Then intMax = intValues(intIndex) lblMaxValue.Text = intMax.ToString End If Next ```

Computer Science & Information Technology

What command would yield the network settings: IP address, subnet mask, gateway, DNS on a Windows computer?

a. ifconfig b. ipconfig c. ipconfig /all d. netstat –a

Computer Science & Information Technology

A route table has two sections: the active routes and the ____.?

A. ?close routes B. ?active connections C. ?alternate routes D. ?passive routes

Computer Science & Information Technology

A computer program that performs a task for a specific purpose is referred to as an application

Indicate whether the statement is true or false

Computer Science & Information Technology