GATE 2004-IT
November 15, 2023Data-Structures
November 15, 2023Software-Engineering
|
Question 17
|
Consider the following program module:
void swap(float* A1, float* A2)
{
float temp;
if (*A1 = = *A2) return;
temp = *A1;
*A1 = *A2;
*A2 = temp;
return;
}
The program effort for the above module using Halstead’s method is
|
315
|
|
|
330
|
|
|
393
|
|
|
403
|
Question 17 Explanation:
Note: Out of syllabus.
Correct Answer: C
Question 17 Explanation:
Note: Out of syllabus.
