Question 1

Time: 00:00:00
Which is the character array used to accept command line arguments?

char argv

char argv

char* argv[]

char* argv[]

char argv[]

char argv[]

char* argv

char* argv

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

PrepInsta User

char *argv[]

PrepInsta User

c

PrepInsta User

c

PrepInsta User

c

Question 2

Time: 00:00:00
What is a dangling pointer ?

points to garbage value

points to garbage value

points to zero

points to zero

points to null value

points to null value

None of the above

None of the above

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

PrepInsta User

When variable goes out of scope or accessing local variable that doesn\'t exist anymore or at the time of deallocation of memory, the pointer becomes a dangling pointer

PrepInsta User

destructor

PrepInsta User

Destructor arrives during object destruction

PrepInsta User

Destructor

PrepInsta User

Destructor

PrepInsta User

Destructor arrives during object destruction

PrepInsta User

when a variable doesn\'t exist anymore, even after destruction of variable the pointer points to the memory which is already freed is called dangling pointer

Question 3

Time: 00:00:00
Which is not a string function ?

strstr

strstr

strupr

strupr

strcmp

strcmp

strchr

strchr

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

PrepInsta User

Strupr converts a string to uppercase

Question 4

Time: 00:00:00
Which of the following does not require to include math.h header file ?

pow()

pow()

rand()

rand()

sqrt()

sqrt()

sinh()

sinh()

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 5

Time: 00:00:00
What is the task of pre-processor ?

Compiling

Compiling

Expanding

Expanding

Linking

Linking

All of the above

All of the above

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 6

Time: 00:00:00
Which of the following is true ?

realloc() can change the memory size of arrays

realloc() can change the memory size of arrays

Unary operator works on only one operand

Unary operator works on only one operand

Struct and Union works in same way.

Struct and Union works in same way.

None of the above

None of the above

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 7

Time: 00:00:00
Which of this is used to skip one iteration:

continue

continue

goto

goto

return

return

break

break

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 8

Time: 00:00:00
Which address does a pointer to an array store ?

Memory address of the first element of the array.

Memory address of the first element of the array.

Memory address of the sum of array elements.

Memory address of the sum of array elements.

value of first element of the array.

value of first element of the array.

None of the above.

None of the above.

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

Question 9

Time: 00:00:00


Predict the output:
using namespace std;

int main()
{
float a = 0.1;
if(a == 0.1)
printf(“Yes”);
else
printf(“No”);
return 0;
}

Yes

Yes

NO

NO

It compares 0 with 0 and since they are equal it will exit the loop immediately

It compares 0 with 0 and since they are equal it will exit the loop immediately

It has syntax error as the same number is being compared with itself

It has syntax error as the same number is being compared with itself

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

PrepInsta User

Printf doesnt end with semicolon ...

PrepInsta User

ans is yes

Question 10

Time: 00:00:00
To print out a and b given below, which of the following printf() statement will you use?


#include<stdio.h>

float a=3.14;
double b=3.14;

printf("%Lf %f", a, b);

printf("%Lf %f", a, b);

printf("%f %lf", a, b);

printf("%f %lf", a, b);

printf("%Lf %Lf", a, b);

printf("%Lf %Lf", a, b);

printf("%f %Lf", a, b);

printf("%f %Lf", a, b);

Once you attempt the question then PrepInsta explanation will be displayed.

Please login to submit your explanation

["0","40","60","80","100"]
["Need more practice!","Keep trying!","Not bad!","Good work!","Perfect!"]

Buy TCS NQT Paid Materials

Paid Materials TCS NQT

Join TCS NQT Online Classes

Personalized Analytics only Availble for Logged in users

Analytics below shows your performance in various Mocks on PrepInsta

Your average Analytics for this Quiz

Rank

-

Percentile

0%

Get over 200+ Courses under One Subscription

mute

Don’t settle Learn from the Best with PrepInsta Prime Subscription

Learn from Top 1%

One Subscription, For Everything

The new cool way of learning and upskilling -

Limitless Learning

One Subscription access everything

Job Assistance

Get Access to PrepInsta Prime

Top Faculty

from FAANG/IITs/TOP MNC's

Get over 200+ course One Subscription

Courses like AI/ML, Cloud Computing, Ethical Hacking, C, C++, Java, Python, DSA (All Languages), Competitive Coding (All Languages), TCS, Infosys, Wipro, Amazon, DBMS, SQL and others.

Comments