What must an organization establish in order to perform a SAMM based assessment?

A. Configuration control
B. Benchmarks (or metrics)
C. Baseline
D. Quality control


Answer: B

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

The Internet is a hyperlink-based system that uses a client/server model.

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

Computer Science & Information Technology

SPIKE can fuzz any protocol that utilizes ____.

A. TCP/IP B. FTP C. SNMP D. Telnet

Computer Science & Information Technology

Windows 7 marks tasks and programs as belonging to which two integrity levels?

a. Low integrity and high integrity. b. Private integrity and public integrity. c. User integrity and administrative integrity. d. None of the above.

Computer Science & Information Technology