edited by
777 views

1 Answer

3 votes
3 votes
Cyclomatic complexity is a software metric used to indicate the complexity of a program.
It is a quantitative measure of the number of linearly independent paths through a program's source code.
Cyclomatic Complexity of module = Number of decision points of program + 1
Number of decision points in module-A = 10 - 1 = 9
Number of decision points in module-B = 10 - 1= 9
Cyclomatic Complexity of the integration both A and B) = Number of decision points +1
= (9 + 9) + 1
= 19
edited by
Answer:

Related questions

0 votes
0 votes
1 answer
1
admin asked Mar 30, 2020
1,084 views
What is the appropriate pairing of items in the two columns listing various activities encountered in a software life cycle?$$\begin{array}{llll}\text{P.} & \text{Require...
0 votes
0 votes
1 answer
4
admin asked Mar 30, 2020
1,239 views
Which one of the following is NOT desired in a good Software Requirement Specifications (SRS) document?Functional RequirementsNon-Functional RequirementsGoals of Implemen...