_________ is the act of recording or observing the actions of people on the job.
A. Employee monitoring
B. Employee tagging
C. Employee grouping
D. Employee validating
Fill in the blank(s) with the appropriate word(s).
Employee-monitoring
Rationale: Employee monitoring is the act of recording or observing the actions of employees while on the job. Common employee-monitoring activities include screening telephone calls, reviewing email, and tracking computer and Internet usage. See 6-7: Understanding Privacy Concerns
You might also like to view...
You have several shapes exactly stacked on each other. What is the keyboard shortcut for selecting through objects, without rearranging the stacking order?
What will be an ideal response?
If a ping from host A to IP address 172.16.1.52 for router R1 in the same subnet succeeds, which of the following can be concluded?
A) R1 is successfully configured. B) Host A is successfully configured. C) Host A and 172.16.1.52 completed the ARP process. D) The host 172.16.1.52 can send ICMP Echo Reply messages.
What is wrong with the following function?void* _retrieve (AVL_TREE* tree, void* keyPtr, NODE* root){ if (tree->compare(keyPtr, root->dataPtr) < 0) return _retrieve(tree, keyPtr, root->left); else if (tree->compare(keyPtr, root->dataPtr) > 0) return _retrieve(tree, keyPtr, root->right); else return root->dataPtr; } // if root}
A. It is missing one recursive call to _retrieve. B. The first if should be "if (tree->compare(keyPtr, root->dataPtr) < 0)". C. The second if should be "if (tree->compare(keyPtr, root->dataPtr) >= 0)". D. It does not check if the data is not in the tree.
A technician is logged in to a Linux system with a user account that has been assigned root privileges. Each time the technician attempts to run a specific terminal command, a “Permission denied” message is displayed. What is the most likely reason for this message?
A. The software repository is out of date and needs to be updated. B. The command syntax needs to be verified. C. The user account is not assigned a password. D. The command needs to be preceded by sudo.