Question:medium

The "Cyclomatic Complexity" of a software module is primarily used to estimate:

Show Hint

To quickly estimate Cyclomatic Complexity without drawing a graph, count the number of "decision" words (if, while, for, case) and add 1.
Updated On: Jul 4, 2026
  • The number of lines of code (LOC).
  • The number of linearly independent paths through the source code.
  • The total memory consumption of the module.
  • The time required for integration testing.
Show Solution

The Correct Option is B

Solution and Explanation

Was this answer helpful?
0