Which of the following is used to control the
flow of execution in program?
a) control structure
b) data structure
c) data control
d) program control
How many types of selection structures are used in programming?
a) one
b) two
c) three
d) four
Explanation: if, if…else, switch
Another term for computer making decision is……
a) sequential
b) selection
c) repetition
d) iteration
Which of the following is simplest form of selection structure?
a) if statement
b) if-else statement
c) nested if
d) switch statement
When did statements after if
statement is executed?
a) condition is true
b) condition is false
c) both a & b
d) none of these
Which of the following is syntax of if statement?
a) if{condition} statement
b) if(condition) statement
c) if” condition” statement
d) all of these