Unreachable code would best be found using:
-
code reviews
-
code inspections
-
a coverage tool
-
a test management tool
-
a static analysis tool
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.