Which of the following are Data Loss Prevention (DLP) strategies that address data in transit issues?

A. Scanning printing of documents.
B. Scanning of outbound IM (Instance Messaging).
C. Scanning copying of documents to USB.
D. Scanning of SharePoint document library.
E. Scanning of shared drives.
F. Scanning of HTTP user traffic.B. Scanning of outbound IM (Instance Messaging).
F. Scanning of HTTP user traffic.


Answer: B. Scanning of outbound IM (Instance Messaging).
F. Scanning of HTTP user traffic.

Computer Science & Information Technology

You might also like to view...

What is the output of the following function and function call?

void calculateCost(int count, float& subTotal, float taxCost); float tax = 0.0, subtotal = 0.0; calculateCost(15, subtotal,tax); cout << "The cost for 15 items is " << subtotal << ", and the tax for " << subtotal << " is " << tax << endl; //end of fragment void calculateCost(int count, float& subTotal, float taxCost) { if ( count < 10) { subTotal = count * 0.50; } else { subTotal = count * 0.20; } taxCost = 0.1 * subTotal; } a. The cost for 15 items is 3.00, and the tax for 3.00 is 0.30; b. The cost for 15 items is 0.00, and the tax for 3.00 is 0.00; c. The cost for 15 items is 0.00, and the tax for 3.00 is 0.30; d. The cost for 15 items is 3.00, and the tax for 3.00 is 0.00;

Computer Science & Information Technology

You always can assign a unique IP address to your computer.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Resource Sheet view does not present information in an easy-to-use format.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The "^" and "$" characters represent:

a. back references b. the beginning and end of a string c. the beginning and end of a regular expression d. none of the above

Computer Science & Information Technology