Which of the following is a benefit of static analysis?
Antwortmöglichkeiten
Richtige Antwort
A: Defects can be identified that might not be caught by dynamic testing
Erklärung
A is correct, per syllabus. Static analysis with a static analyzer can be used to find defects such as uninitialized variables that could be difficult to catch with dynamic testing. B is incorrect because defects will still need to be documented regardless of how early they are found. C is incorrect because this is dynamic analysis. D is incorrect because static analysis usually requires the use of tools.