0% found this document useful (0 votes)
99 views

List of Attempted Questions and Answers

This document contains a list of attempted questions and answers in different formats, including true/false, select the blank, multiple choice single answer, and multiple choice multiple answer. The questions cover topics like C programming fundamentals, operators, functions, and pointer declarations. For each question, the correct answer and the user's answer are provided for review.

Uploaded by

api-3798693
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
99 views

List of Attempted Questions and Answers

This document contains a list of attempted questions and answers in different formats, including true/false, select the blank, multiple choice single answer, and multiple choice multiple answer. The questions cover topics like C programming fundamentals, operators, functions, and pointer declarations. For each question, the correct answer and the user's answer are provided for review.

Uploaded by

api-3798693
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 3

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

You might also like