TNO is the concept of designing a system so that only the users, not the service providers, have access to user data. Good answers will be forms of data that are highly personal or that service providers should never need to know: passwords, medical records, personal photos,and so on.
What will be an ideal response?
DLP generally requires either installing an agent on a user’s system or observing network traffic at a gateway. Installing agents is generally not an option in SaaS or PaaS environments, and users can often access cloud services without going through a corporate gateway (such as by accessing them from home). Organizations can partially mitigate this issue by using cloud services that can limit access to users who are connecting through the corporate gateway, or by placing DLP capability in the cloud environment (generally only possible for IaaS).
You might also like to view...
Which control sequence is used to skip over to the next horizontal tab stop?
a. \n b. end1 c. \t d. \b e. \'
A data flow that contains data that are used between processes is called:
A) internal. B) derived. C) base. D) iterative.
Special method ________ customizes the behavior of built-in function abs.
Fill in the blank(s) with the appropriate word(s).
What does the following code do? The first code listing contains the declaration of the Shape class. Each Shape object represents a closed shape with a number of sides. The second code listing contains a method (Mystery) created by a client of the Shape class. What does this method do?
public class Shape { private int m_intSides; // constructor with number of sides public Shape( int intSides ) { Side = intSides; } // end constructor Shape // set and get side value public int Side { // return m_intSides get { return m_intSides; } // end of get accessor // set m_intSides set { if ( value > 0 ) { m_intSides = value; } else { m_intSides = 0; } } // end of set accessor } // end property Side } // end class Shape