Infonet Technology
Give wings to your dreams with us
PGDCA Exam 2023
1 / 28
Category: Fill in the Blanks
INPUT STATEMENT will ask for input data at the time of ________________.
2 / 28
Variables in the PRINT statement may be separated by _____________.
3 / 28
A set of ordered commands that enables a computer to carry out a specific task is called a computer_____________ .
4 / 28
C and java are examples of __________language
5 / 28
C language is developed by ____________________.
6 / 28
Category: Choose the correct answer
Q.Every statement in a C program has to end with _____.
7 / 28
Q. Execution of a program starts from ____.
8 / 28
Q. When the C programming language was developed?
9 / 28
Q. What was C programming adapted from?
10 / 28
Q. Which of the following is not a variable type in c programming?
11 / 28
Category: Name the following
Q. Write two High Level Language?
12 / 28
Q. Write two object-oriented language?
13 / 28
Q. Write two data types?
14 / 28
Q. Write two keywords?
15 / 28
Q. Write two Header File Name?
16 / 28
Q. Write two operators name
17 / 28
Q. Write two conditional statements name
18 / 28
Q. Write two low level language
19 / 28
Q. Write two library function
20 / 28
Q.Write two procedural language
21 / 28
Category: Write True or False
Q. C is the low-level programming language.
22 / 28
Q. We always need a very powerful computer to run C program.
23 / 28
Q. comment command not available in c programming language.
24 / 28
Q. C is a procedural programming language.
25 / 28
Q. Every statement in a C program has to end with fullstop.
26 / 28
Category: Find the output for the program
#include<stdio.h>
int main() { float a=3,b=2; printf(a%b); return 0; }
27 / 28
void main() { float a=3.15529; printf("%.1f\t", a); return 0; }
28 / 28
for(int i=1;i<=5;i++)
{
printf("Infonet\t");
}