Chapter 3: Control Statement

 

Results

Previous
Next

#1. When working, there are several instances when we have to make _________

Previous
Next

#2. The ____ statement allows the programmer to execute a statement or series of statement conditionally.

Previous
Next

#3. The value of true is ______

Previous
Next

#4. The value of false is _______

Previous
Next

#5. The else clause like the if clause can contain compound statements, a clause of the if statement may contain another if statement known as _________

Previous
Next

#6. The ______ statement causes a particular group of statements to be selected from a group of options.

Previous
Next

#7. The ______ statement should be included in each case.

Previous
Next

#8. The values that follow the keyword ________ can only be labels.

Previous
Next

#9. The ________ group may appear anywhere within the switch statement.

Previous
Next

#10. _________ is used to execute a group of statements repeatedly until the condition is satisfied.

Previous
Next

#11. _______ statement is entry controlled loop.

Previous
Next

#12. _________ statement is exit controlled loop.

Previous
Next

#13. _________ loop is executed until the expected evaluates to True.

Previous
Next

#14. ______ function retrieves a character from the terminal and is assigns to the variable.

Previous
Next

#15. __________ loop is constructed using the while statement, the test for continuation of the loop is carried out at the beginning of each pass.

Previous
Next

#16. Do while requires a _____________ following the statement’s conditional part.

Previous
Next

#17. The ____ statement is one of the most commonly used iteration constructs.

Previous
Next

#18. The for statement includes an expression that specifies an initial value for an _________

Previous
Next

#19. Statement is either a __________ or ___________ statement.

Previous
Next

#20. The _______ loop can be nested within a while loop or another for loop.

Previous
Next

#21. During execution of a loop it becomes desirable to skip a part of the loop or exit the loop is

Previous
Next

#22. Jumping statement have _____ types.

Previous
Next

#23. The ______ statement is used to terminate loops or exit from a switch.

Previous
Next

#24. The _______ statement is used to bypass the reminder of the current pass through a loop.

Previous
Next

#25. The ________ statement is used to return from a function.

Previous
Finish