ISRO | ISRO CS 2013 | Question 65
What is the cyclomatic complexity of a module which has seventeen edges and thirteen nodes?
(A) 4
(B) 5
(C) 6
(D) 7
Answer: (C)
Explanation: Cyclomatic complexity of a module which has seventeen edges and thirteen nodes = E – N + 2
E = Number of edges, N = Number of nodes
Cyclometic complexity = 17 – 13 + 2 = 6
Option (C) is correct.
Quiz of this Question
Please Login to comment...