nerdexam
(ISC)2

CCSP · Question #35

Static software security testing typically uses __________ as a measure of how thorough the testing was.

The correct answer is C. Code coverage. Static software security testing (SAST) commonly uses code coverage as a metric to determine the thoroughness of the analysis, indicating the percentage of source code that has been analyzed for vulnerabilities without executing the code.

Submitted by kev92· Apr 18, 2026Cloud Application Security

Question

Static software security testing typically uses __________ as a measure of how thorough the testing was.

Options

  • ANumber of testers
  • BFlaws detected
  • CCode coverage
  • DMalware hits

How the community answered

(63 responses)
  • A
    3% (2)
  • B
    2% (1)
  • C
    87% (55)
  • D
    8% (5)

Why each option

Static software security testing (SAST) commonly uses code coverage as a metric to determine the thoroughness of the analysis, indicating the percentage of source code that has been analyzed for vulnerabilities without executing the code.

ANumber of testers

The number of testers does not directly measure the thoroughness of static code analysis; automated tools are often used for SAST.

BFlaws detected

While flaws detected is an outcome of testing, it doesn't directly measure the *thoroughness* of the test *process* itself, as thoroughness refers to how much of the code was examined.

CCode coverageCorrect

Static Application Security Testing (SAST) analyzes source code without executing it, and 'code coverage' measures the percentage of the codebase that has been examined by the testing tools, indicating the thoroughness of the static analysis. High code coverage ensures that a significant portion of the application's logic has been scanned for potential vulnerabilities.

DMalware hits

Malware hits are relevant to dynamic analysis or runtime protection, not typically a direct measure for static software security testing, which focuses on identifying vulnerabilities in the code itself.

Concept tested: Static application security testing metrics

Source: https://learn.microsoft.com/en-us/visualstudio/test/code-coverage-for-unit-tests?view=vs-2022

Topics

#Static Application Security Testing#SAST#Code coverage#Software testing metrics

Community Discussion

No community discussion yet for this question.

Full CCSP Practice