Explain what might happen if managerial guidance SysSP documents have not been written or provided to technical staff.
What will be an ideal response?
Imagine that management fails to convey to the firewall technicians its intent with respect to the firewall's technical configuration. In the absence of such guidance, the technicians will rely on their own experiences and training to select rules they feel are appropriate. The organization will then experience numerous problems if and when business needs conflict with the technicians' perception of the security function of a firewall. If this were an organization with a need for ultra-high security, such as a Department of Defense contractor, and if the technicians developed a set of firewall rules with an intermediate degree of control, the organization might find itself underprotected, having a need for a high degree of control. On the other hand, with the same set of intermediate-level rules, an organization with an open environment, such as an academic institution, might find itself overly restricted, with the flow of information stifled. This wide range of possible needs is why it's necessary to carefully direct the development, implementation, and configuration of all technologies in the organization, especially security technologies
You might also like to view...
To add an object of a class to a List, you use the ____________ method.
a. Class b. Add c. Insert d. New
What is a person called who can accomplish many types of daily tasks using technology?
A. Tech savvy B. App efficient C. Computer savant D. Internet wizard
Match each term with the correct statement below.
A. Act only according to maxims (principles) that could be adopted as universal laws B. A branch of mathematics in which an individual makes choices that potentially create points for himself C. Treat humans, both yourself and others, always as ends in themselves, and never merely as a means to an end D. Two people are offered a choice either to cooperate or defect E. Every person is treated equally and no one is given preferential treatment F. People are rational beings who wish to promote their own self-interests, and the best way of doing so is to promote the common interests of society G. Focuses on rights, duties, obligations, and rules H. X is good because God commands it, and for no other reason I. A decision reached should be correct for everyone that has a similar decision to make
Given the following function: int strange(int x, int y){if (x > y)return x + y;elsereturn x - y; }what is the output of the following statement?cout << strange(4, 5) << endl;
A. -1 B. 1 C. 9 D. 20