Question 439 – Machine-Instructions
December 4, 2023Question 4387 – 2009 June UGC NET Paper 1
December 4, 2023Software-Engineering
|
Question 2
|
Consider the following program module:
int module1 (int x, int y) {
while (x! = y) {
if (x > y)
x = x - y,
else y = y - x;
}
return x;
}
What is Cyclomatic complexity of the above module?
|
1
|
|
|
2
|
|
|
3
|
|
|
4
|
Question 2 Explanation:
Note: Out of syllabus.
Correct Answer: C
Question 2 Explanation:
Note: Out of syllabus.
