Question:

The cyclomatic complexity metric provides the designer with information regarding the number of ________.
 

Show Hint

Cyclomatic complexity is useful for assessing test coverage and identifying sections of code that may be more error-prone.
Updated On: Jun 16, 2025
  • cycles in the program
  • errors in the program
  • independent logic paths in the program
  • statements in the program
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

Cyclomatic complexity is a software metric used to measure the complexity of a program based on its control flow graph. It specifically measures the number of independent paths in the program, which helps to evaluate the program's testing needs and maintainability. A higher cyclomatic complexity indicates a more complex program that may require more testing.
Was this answer helpful?
0
0