The Quality Assurance team is testing a third party application. They are primarily testing for defects and have some understanding of how the application works. Which of the following is the team performing?
A. Grey box testing
B. White box testing
C. Penetration testing
D. Black box testing
Answer: A. Grey box testing
Computer Science & Information Technology
You might also like to view...
Analyze the following code:
``` public class Test { public static void main(String[] args) { int[] a = new int[4]; a[1] = 1; a = new int[2]; System.out.println("a[1] is " + a[1]); } } ``` a. The program has a compile error because new int[2] is assigned to a. b. The program has a runtime error because a[1] is not initialized. c. The program displays a[1] is 0. d. The program displays a[1] is 1.
Computer Science & Information Technology
Physical path loops help improve a network's fault tolerance; if one path fails, another is available.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology