PGDCA Exam 2023

Created by admin

PGDCA Exam 2023

1 / 28

Category: Fill in the Blanks

INPUT STATEMENT will ask for input data at the time of ________________.

2 / 28

Category: Fill in the Blanks

Variables in the PRINT statement may be separated by _____________.

3 / 28

Category: Fill in the Blanks

A set of ordered commands that enables a computer to carry out a specific task is called a computer_____________ .

4 / 28

Category: Fill in the Blanks

C  and java are examples of __________language

5 / 28

Category: Fill in the Blanks

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

Category: Choose the correct answer

Q. Execution of a program starts from ____.

8 / 28

Category: Choose the correct answer

Q. When the C programming language was developed?

9 / 28

Category: Choose the correct answer

Q. What was C programming adapted from?

10 / 28

Category: Choose the correct answer

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

Category: Name the following

Q. Write two object-oriented language?

13 / 28

Category: Name the following

Q. Write two data types?

14 / 28

Category: Name the following

Q. Write two keywords?

15 / 28

Category: Name the following

Q. Write two Header File Name?

16 / 28

Category: Name the following

Q. Write two operators name

17 / 28

Category: Name the following

Q. Write two conditional statements name

18 / 28

Category: Name the following

Q. Write two low level language

19 / 28

Category: Name the following

Q. Write two library function

20 / 28

Category: Name the following

Q.Write two procedural language

21 / 28

Category: Write True or False

Q. C is the low-level programming language.

22 / 28

Category: Write True or False

Q. We always need a very powerful computer to run C program.

23 / 28

Category: Write True or False

Q. comment command not available in c programming language.

24 / 28

Category: Write True or False

Q. C is a procedural programming language.

25 / 28

Category: Write True or False

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

Category: Find the output for the program

#include<stdio.h>

void main()
{
float a=3.15529;
printf("%.1f\t", a);
return 0;
}

28 / 28

Category: Find the output for the program

for(int i=1;i<=5;i++)

{

printf("Infonet\t");

}

Scroll to Top