LIST OF ATTEMPTED QUESTIONS AND ANSWERS
True/False Question
C program is nothing but a combination of functions
Correct Answer True Your Answer
True
Select The Blank Question ________ function is used to append one string at the end of another Correct Answer strcat Your Answer
strcat
True/False Question
All operator in C are ranked according to their precedence.
Correct Answer True Your Answer
True
True/False Question
A value of object changes when event occurs.
Correct Answer True Your Answer
True
Multiple Choice Single Answer Question How many times 'return' statement can be written? Correct Answer any Your Answer
once
Multiple Choice Multiple Answer Question What will be the output of the following main(){ int a = 1;float f=1; printf("%d", a * f); printf("%f", a * f); printf(%f",a + f * 100);} Correct Answer 0 , 1.000000 , 101.000000 Your Answer
0 , 1.000000 , 101.000000
Multiple Choice Single Answer Question Which of the following operator is used to declare pointer to pointer? Correct Answer ** Your Answer
**