if x<>=z
then statement
end
what is the cyclomatic complexity
Answers were Sorted based on User's Feedback
Answer / bob
A: 3
1st decision statement : x<>z
2nd decision statement : x=z
Please consider that the easiest way to calculate McCabe's Cyclomatic Complexity is to sum the number of binary decision statements (if, while, for, etc) and add 1 to it.
Therefore 2 statements + 1 = 3. The answer is 3.
| Is This Answer Correct ? | 17 Yes | 5 No |
Answer / rupenzal
Ans:2
1st path is when x<>z
2nd path is when x=z.
Therefore answer is 2.
| Is This Answer Correct ? | 18 Yes | 15 No |
what's the difference between function overloading and function overiding?
Assume I have a linked list contains all of the alphabets from "A" to "Z?" I want to find the letter "Q" in the list, how does you perform the search to find the "Q?"
i wanted to know about questions about c,c++ , which is required for placements.... im a fresher
How connect plc and pc through software
What Is Operator Overloading in C++?
What are the components of stl?
What is Template Specialization?
what is the difference between thread and process
How to write a function that goes through an array of characters and eliminates any elements that are not letters (Legal letters can be either in an uppercase or a lowercase format.) The function removeNonLetters should return the new effective size of the array as the result.
Explain how to insert a hyperlink in to an Excel worksheet and save a Word document as a Web page.
How is stl different from c++ standard library?
what is template and type convertion