57.4k views
5 votes
Which of the following are always true for Black Box Testing? Results in 4n+1 test cases where n is the number of variables Always an option for accessible, working code. Requires fuzzing Requires automation The program's internals are not available. The program's internals are available. QUESTION 6 Dynamic Analysis can be used on code that does not compile. True False

User Rohan Kadu
by
7.6k points

1 Answer

5 votes

Answer:

Explanation:

False. Dynamic analysis involves analyzing the behavior of a program while it's running. If the code does not compile, it cannot be executed, and therefore dynamic analysis cannot be performed on it. Dynamic analysis requires the code to be executable.

User StrangeWill
by
7.7k points