What are Cyclomatic Complexity Measures in software design complexity?

W hat are Cyclomatic Complexity Measures in software design complexity?

Cyclomatic Complexity is a metric for software quality. Cyclomatic complexity measures the number of “linearly independent paths” through a piece of code thereby tells the count of the number of decisions in the source code. The higher the count, the more complex the code.