...
GATE 2004-IT
November 15, 2023
Data-Structures
November 15, 2023
GATE 2004-IT
November 15, 2023
Data-Structures
November 15, 2023

Software-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

A
315
B
330
C
393
D
403
Question 17 Explanation: 
Note: Out of syllabus.
Correct Answer: C
Question 17 Explanation: 
Note: Out of syllabus.

Leave a Reply

Your email address will not be published. Required fields are marked *