Multiple choice technology testing

Static code analysis typically identifies all but one of the following problems. Which is it?

  1. Unreachable code.

  2. Unreachable Variables

  3. Faults in the requirements

  4. Too few comments

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

Static code analysis examines source code structure to identify issues like unreachable code, unused variables, and insufficient comments. It cannot detect faults in requirements because requirements are not code - they are separate documents that static analysis tools don't process.