retagged by
3,836 views

1 Answer

Best answer
5 votes
5 votes
answer - C

There are 2 decision points in this module

1. while condition and

2. if condition

hence cyclomatic complexity = number of decision points + 1 = 3
selected by
Answer:

Related questions

2 votes
2 votes
1 answer
1
Satbir asked Jan 13, 2020
2,567 views
Consider the following pseudo-codeI=0; J=0; K=8; while(I<K-1) //while-1 { J=J+1; while(J<K) //while-2 { if(x[I]<x[J]) { temp = x[I]; x[I]=x[J]; x[J]=temp; } }// end of wh...
3 votes
3 votes
1 answer
2
Ishrat Jahan asked Nov 2, 2014
5,072 views
What is the availability of a software with the following reliability figures?Mean Time Between Failure (MTBF) = 25 daysMean Time To Repair (MTTR) = 6 hours1%24%99%99.009...