Multiple choice technology storage

Which of the following will NOT be detected by static analysis?

  1. A) Parameter type mismatches.

  2. B ) Errors in requirements.

  3. C ) Undeclared variables.

  4. D ) Uncalled functions.

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

Static analysis examines code without executing it and can detect syntax errors, undeclared variables, type mismatches, and unreachable code. However, it cannot validate whether requirements are correctly captured or if the software meets user needs; requirements errors require manual review or dynamic testing. Options A, C, and D are all detectable through static code analysis.