Computer Science, asked by swapnalinarkar, 1 year ago

Complexity of a code is determined based on
a Cyclomatic complexity number
b.Number of source line of code
c.Efferent coupling
d.Time taken to perform inspection

Answers

Answered by Sidyandex
1

The cyclomatic complexity number determines the complexity of the code.

It measures the number of linear paths that are independent running through the program source code.

It was derived by Thomas J McCabe, Senior in the year 1976. The linearly independent cycles are numerically calculated by this method.

Similar questions