If someone were to ask you to prove that your application is secure, what would the Misuse cases prove?

A. Proves that threat analysis and investigation was done looking for ways to break the software
B. Prove that there is a process in place that proactively monitors new threats
C. Prove that testing is a major process in the development life cycle
D. It provides documentation of the reusable, secure process


Answer: A

Computer Science & Information Technology

You might also like to view...

Given the following statements, what values will be passed to the parameters of the subprogram named Vacation?

```Declare Motel As String Declare Interstate As Integer Set Motel = “Dew Drop Inn” Set Interstate = 95 Call Vacation(Motel, Interstate) Subprogram Vacation(String Lodging, String Road)``` a. Lodging = “Dew Drop Inn”, Road = “95” b. Lodging = “Dew Drop Inn”, Road = 95 c. Lodging = Motel, Road = Interstate d. This cannot be done, type mismatch

Computer Science & Information Technology

Based on the dangling-else discussion state the output for each of the following code snippets when x is 9 and y is 11 and when x is 11 and y is 9. We eliminated the indentation from the following code to make the problem more challenging.

``` if (x < 10) { if (y > 10) cout << "*****" << endl; } else { cout << "#####" << endl; cout << "$$$$$" << endl; } ```

Computer Science & Information Technology

The Watch Window is useful to monitor cells in one part of a workbook while working on another part of the workbook

Indicate whether the statement is true or false

Computer Science & Information Technology

After an application is debugged and you are ready to deploy or distribute it, you can build the most optimized solution,a Release version. To switch to the Release version, select Release from the Solution Configurations list box on the Standard Visual Studio toolbar.

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

Computer Science & Information Technology