1.
Do while loop tests the condition at the End of the Loop.
2.
The Symbol && is read as ____________________.
3.
What type of errors are checked during compilation
A. 
B. 
C. 
D. 
4.
The purpose of main function is
A. 
To stop program execution
B. 
C. 
D. 
To start program execution
5.
What is the valid identifier in the following
A. 
B. 
C. 
D. 
6.
What is range of char data value?
A. 
B. 
C. 
D. 
7.
The minimum number of temporary variable needed to swap the contents of two variable is
A. 
B. 
C. 
D. 
8.
In the expression b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first?
A. 
B. 
C. 
D. 
9.
Which of the following is an incorrect variable name.
A. 
B. 
C. 
D. 
10.
Variables are initialized in C, using
A. 
B. 
C. 
D. 
11.
In the following, which is bitwise operator?
A. 
B. 
C. 
D. 
12.
What is output of the following program?
main()
{int a;
float b;
a=1/2;
b=1.0/2.0;
printf(ā a=%d b=%fā,a,b);
}
A. 
B. 
C. 
D. 
13.
Representing various steps in a flow diagram is called as
A. 
B. 
C. 
D. 
14.
What are the smallest individual units in a program
A. 
B. 
C. 
D. 
15.
The operator ++ is called as operator
A. 
B. 
C. 
D. 
16.
Which of the following is not a relational operator
A. 
B. 
C. 
D. 
17.
main ( ) { int m,y;
m = 5;
y = ++m;
printf(ā%d %dā,m,y);} consider the above code and find the output
A. 
B. 
C. 
D. 
18.
Int C; C=25/2; What is the value of C
A. 
B. 
C. 
D. 
19.
Which of the following cannot be used as an identifier.
A. 
Alphabet followed by digit
B. 
C. 
D. 
20.
Size of (double) returns
A. 
B. 
C. 
D. 
21.
The ___________________ loop executes at least once.
22.
An ___________________ is a collection of variables having same data type
23.
What will be the output of the following program?
#include
int main()
{
int a = 1, b = 2, c = 3;
printf("The value of a is %d", a);
a+=3;
printf(" The value of a is %d", a);
return 0;
}
A. 
The value of a is 2 The value of a is 2
B. 
The value of a is1 The value of a is 3
C. 
The value of a is 1 The value of a is 4
D. 
24.
What is the output of the below program?
What is value of C.
{
a=10;
b=12;
c=a+b*2;
}
A. 
B. 
C. 
D. 
25.
What will be the output of the following program?
#include<stdio.h>
int main()
{
int arr[3]= {1, 2, 3, 4};
printf("%d\n",arr[3] );
}
A. 
B. 
C. 
D.