Answer:
Directive
Explanation:
A directive access control is used to direct, confine, or control the actions of subject to force compliance with security policies. Some examples of direct access controls are: security guards, guard dogs, posted notifications, monitoring, supervising, work task procedures, and awareness training. It can also be categorized by how it is implemented; for example, it can be administrative, logical/technical, or physical.
Answer: 37.1
Explanation: The Law of sines states that there is a proportionality between a side of triangle and its correspondent angle, i.e.:

where:
a, b and c are sides
A, B and C are angles
In the question, there is a triangle with 27.4 as a measure of side a, angles A and C. So, it wants the side c:


c = 
c = 37.1
The side c is 37.1
Answer:
Procedure are used to create and modifying the programs. Basically, it is grouping of instruction that can be used give direction of the flow of program. Control are given to the next term once the execution of the instruction get over. The steps of procedure are:
procedure are first executed the declaration instruction and then coding the procedure, then it will return to the directories and the last executable instruction is the termination of procedure.
#include using namespace std;int main(){int year = 12,value = 10,total = 0;do{year++;value *= 2;total += value;}while(value*2 < 1000);cout << "Age: " << year << endl;cout << "Last gift: " << value << endl;cout << "Total: " << total << endl;cin.get();return 0;