Why would an organization require the paymaster to deliver all unclaimed paychecks to the internal audit department?

A. to detect a "phantom employee" for whom a check was produced
B. to prevent an absent employee's check from being lost
C. to avoid paying absent employees for payday
D. to prevent the paymaster from cashing unclaimed checks


Answer: A

Computer Science & Information Technology

You might also like to view...

It would be safe to have a driver for this search function, in the case:

``` 1 bool search( Node ptr, Bird & bird, Bird dove ) 2 { 3 if ( ptr == NULL ) 4 return false; 5 if ( ptr->info == dove ) { 6 bird = ptr->info; 7 return true; 8 } 9 return search( ptr->next, bird, dove ); 10 } ``` which is called for a linked list (where start points to the first node) using the lines of code: ``` if ( search( start, bird, dove ) ) cout << “search successful” << endl; ``` A. that the linked list is empty B. that there is no dove in the linked list C. A driver would not help to safeguard against any adverse conditions. D. that there is more than one dove in the linked list

Computer Science & Information Technology

The most popular transmission media option for wired Ethernet networks is UTP cable

Indicate whether the statement is true or false

Computer Science & Information Technology

What holds the log of Active Directory transactions or changes?

A. aed.dit B. edb.chk C. ntds.log D. edb.log

Computer Science & Information Technology

Which of the following types of encryption will help in protecting files on a PED?

A. Mobile device encryption B. Transport layer encryption C. Encrypted hidden container D. Database encryption

Computer Science & Information Technology