...
Communication
November 17, 2023
NTA-UGC-NET 2021 Dec & 2022 June Paper-2
November 18, 2023
Communication
November 17, 2023
NTA-UGC-NET 2021 Dec & 2022 June Paper-2
November 18, 2023

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

A
60
B
63
C
66
D
69
Question 16 Explanation: 
Note: Out of syllabus.
Correct Answer: B
Question 16 Explanation: 
Note: Out of syllabus.

Leave a Reply

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