Multiple choice technology testing

Cyclomatic Complexity method comes under which testing method

  1. White box

  2. Black box

  3. Green box

  4. Yellow box

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

Cyclomatic Complexity measures the number of independent paths through code by counting decision points (predicates). It's calculated from the control flow graph, requiring knowledge of the code structure, making it a white-box testing technique. Black-box testing (B) doesn't examine code structure. Green and yellow box are not standard testing categories.