Multiple choice technology testing

Which of the following is a TRUE statement about the use of static analysis tools?

  1. Static analysis tools can change the code to reduce complexity.

  2. Static analysis tools are intended to support developers only

  3. Static analysis tools aid in understanding of code structure and dependencies

  4. Static analysis tools cannot be used to enforce coding standards.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Static analysis tools examine code structure without executing it, helping developers understand dependencies, complexity, and potential issues. They do NOT change code (option A), can be used by various roles (B wrong), and CAN enforce coding standards (D wrong).