Contents

A statement used to control the flow of execution in a program is called……
a) conditional statement                   
b) control statement
c) relational statement                       
d) Boolean statement

b

How many types of control structures?
a) one    
b) two    
c) three 
d) four

c

Explanation: Sequence, Selection, Repetition


The statements are executed in same order as they are in program is called…
a) sequential structure     
b) selection structure
c) repetition structure
d) all of these

a

A statement or set of statement that are executed based on condition is called…..
a) sequential structure                       
b) selection structure
c) repetition structure
d) all of these

b

How many types of conditional/selection statement?
a) one    
b) two    
c) three  
d) four

d

Explanation: if statement, if-else statement, nested if statement, switch statement


The simplest form of selection structure is……
a) if statement    
b) if-else statement
c) nested if                           
d) switch statement

a