Communication
November 17, 2023NTA-UGC-NET 2021 Dec & 2022 June Paper-2
November 18, 2023Software-Engineering
|
Question 16
|
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 volume for the above module using Halstead’s method is
|
60
|
|
|
63
|
|
|
66
|
|
|
69
|
Question 16 Explanation:
Note: Out of syllabus.
Correct Answer: B
Question 16 Explanation:
Note: Out of syllabus.
