Samacheer Kalvi Class 11 Computer Science Flow of Control Questions - 1

Question: 1

What is the alternate name of null statement?

(A) zero statement

(B) no statement

(C) empty statement

(D) void statement

Ans: C

empty statement

Question: 2

The multi way branching statement

(A) if

(B) if-else

(C) for

(D) switch

Ans: D

switch

Question: 3

Which of the following is the exit control loop?

(A) do … while

(B) while

(C) for

(D) if … else

Ans: A

do … while

Question: 4

Program statements that cause jumps are called as

(A) compound statement

(B) null statement

(C) compound statement

(D) control flow

Ans: D

control flow

Question: 5

The set of statements that are executed again and again in iteration is called as

(A) body of loop

(B) statement

(C) loop

(D) condition

Ans: A

body of loop

Question: 6

How many types of iteration statements exist?

(A) 2

(B) 3

(C) 4

(D) 5

Ans: B

3

Question: 7

How many times the following loop will execute? for (int i = 0; i < 10; i++)

(A) 9

(B) 10

(C) 11

(D) 13

Ans: B

10

Question: 8

A loop that contains another loop inside its body

(A) nested loop

(B) nesting of loop

(C) inner loop

(D) inline loop

Ans: A

nested loop

Question: 9

A (n) _____ is a set of statements or instructions to perform a specific task.

(A) program

(B) algorithm

(C) pseudocode

(D) language

Ans: A

program

Question: 10

In C++, the group of statements should enclosed within

(A) { }

(B) []

(C) ()

(D) <>

Ans: A

{ }

Recent Articles
Trending Posts

REGISTER TO GET FREE UPDATES