Computer Science, asked by snehadadachanji, 9 months ago

Fill in the blanks:

1. Branching statements are also called _____ control statements.
2. If else control structure contains _____ blocks of statements.
3. The _____ control structure checks multiple conditions and executes the block of statements associated with the condition returning true.
4. The _____ statement takes program control out of the switch expression.
5. _____ and _____ are the two types of flow of control.
6. When if statement occurs within another if, it is called _____.


OPTIONS:
switch
branching
nested if
two
break
looping
decision​

Answers

Answered by myrakincsem
3

The blanks can be filled as follows:

1. Branching statements are also called nested  control statements.

2. If else control structure contains two blocks of statements.

3. The decision control structure checks multiple conditions and executes the block of statements associated with the condition returning true.

4. The break statement takes program control out of the switch expression.

5. Looping and branching are the two types of flow of control.

6. When if statement occurs within another if, it is called looping.

Similar questions