Google News
logo
Software Testing - Interview Questions
What is Cyclomatic Complexity?
Cyclomatic complexity is used to measure the complexity of the software using the control flow graph of the software. The following are the steps to calculate cyclomatic complexity and test cases design are: 
 
* Construct graph with nodes and edges from code
* Identify independent paths
* Cyclomatic complexity calculation
* Design of test cases
Advertisement