Which approach is considered a black-box security testing method?

A. Static application security testing
B. Binary code inspection
C. Dynamic application security testing
D. Source code review


Answer: C. Dynamic application security testing

Computer Science & Information Technology

You might also like to view...

What is the output of the following code?

``` #include using namespace std; int main() { int list[] = {1, 1, 1, 1}; *(list) = *(list) + 1; *(list + 1) = *(list + 1) + 2; *(list + 2) = *(list + 2) + 3; *(list + 3) = *(list + 3) + 4; cout << list[0] << " " << list[3] << endl; return 0; } ``` a. 2 2 b. 3 5 c. 2 5 d. 1 2 e. 3 4

Computer Science & Information Technology

Which of the following aggregate operations can be executed on array variables?

A. Arithmetic B. Assignment C. Function returning a value D. Parameter passing by reference

Computer Science & Information Technology

A field's ________ determine how that field functions.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Which of the following commands executes a rollback?

A. ROLLBACK TABLE; B. ROLLBACK; C. ROLLBACK ALL; D. ROLLBACK DB;

Computer Science & Information Technology