Which of the following types of tools is best suited for determining source code compliance with the guidelines provided by a coding standard?
Correct Answer: C
A static analysis tool is best suited for determining source code compliance with the guidelines provided by a coding standard. Static analysis tools analyze code without executing it, checking for adherence to coding standards, potential errors, and code quality issues. They are designed to detect deviations from predefined coding standards and ensure that the code conforms to best practices and guidelines.
References:
* ISTQB CTFL Syllabus V4.0, Section 3.2.3 on Static Analysis and its applications
* The syllabus explains that static analysis tools are used to enforce coding standards and improve code quality by detecting issues early in the development process.
CTFL NEW