Multiple choice technology testing

Cyclomatic complexity method comes under which testing method?

  1. Green box

  2. Black box

  3. White box

  4. Yellow box

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

Cyclomatic complexity is a white box testing method that calculates the number of independent paths through source code (based on control flow graph: edges - nodes + 2). It helps determine minimum test cases needed for path coverage.