Recent questions tagged cyclomatic-complexity

0 votes
1 answer
1
McCabe’s cyclomatic complexity number of a program control graph ‘$G$’ with $e$edges, $n$ nodes and $p$ disconnected paths is defined as$n – e + 2p$$e – n + 2 +...
4 votes
1 answer
7
6 votes
3 answers
9
Consider the following pseudo- codewhile (m<n) if (x>y ) and (a<b) then a=a+1 y=y-1 end if m=m+1 end whileWhat is cyclomatic complexity of the above pseudo -code?2345
5 votes
2 answers
11
6 votes
1 answer
12
4 votes
2 answers
15
3 votes
1 answer
16
14 votes
4 answers
20
To see more, click for the full list of questions or popular tags.