retagged by
4,759 views

1 Answer

Best answer
6 votes
6 votes
cyclomatic complexity is used for testing purpose . It is calculated by using below formula E-N+2

=17-13+2

=4+2

=6

option c
selected by
Answer:

Related questions

7 votes
7 votes
2 answers
1
makhdoom ghaya asked May 12, 2016
12,891 views
If a program $P$ calls two subprograms $P1$ and $P2$ and $P1$ can fail $50$% of the time and $P2$ can fail $40$% of the time, what is the failure rate of program $P$?$50$...
2 votes
2 votes
3 answers
2
makhdoom ghaya asked May 12, 2016
5,767 views
Which of the following testing methods uses fault simulation technique?Unit testingBeta testingStress testingMutation testing
3 votes
3 votes
1 answer
3
makhdoom ghaya asked May 12, 2016
4,127 views
Which of the following types of coupling has the weakest coupling?Pathological couplingControl couplingData couplingMessage coupling
0 votes
0 votes
1 answer
4
Ramayya asked Jan 7
254 views
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 +...