Multiple choice technology testing

Unreachable code would best be found using:

  1. code reviews

  2. code inspections

  3. a coverage tool

  4. a test management tool

  5. a static analysis tool

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

Static analysis tools examine code structure without executing it, analyzing control flow and data paths to identify code that can never be reached under any input conditions. While reviews and coverage tools can help, static analysis systematically detects unreachable code most efficiently.