What benefits do static analysis tools have over test execution tools?
What benefits do static analysis tools have over test execution tools?
Static analysis tools find defects earlier in the life cycle. These tools analyze the code without executing it, allowing developers to identify and fix issues during the coding phase itself, often before the software is even run. This early detection of defects helps reduce the cost and effort needed to fix problems later in the development process.
A is correct