0
13kviews
Draw a control flow graph and find cyclomatic complexity for the PDL : if(c1 or c2 and c3)s1; else s2; while(c4)s3; do s5; while(c5); s6

Cyclomatic complexity can be given as, 
V(G) = E - N + 2P
= 11 - 9 + 2
= 4

Cyclomatic complexity can be given as, V(G) = E - N + 2P = 11 - 9 + 2 = 4


Please log in to add an answer.