Skip to content
#1. When working, there are several instances when we have to make _________
#2. The ____ statement allows the programmer to execute a statement or series of statement conditionally.
#3. The value of true is ______
#4. The value of false is _______
#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 _________
#6. The ______ statement causes a particular group of statements to be selected from a group of options.
#7. The ______ statement should be included in each case.
#8. The values that follow the keyword ________ can only be labels.
#9. The ________ group may appear anywhere within the switch statement.
#10. _________ is used to execute a group of statements repeatedly until the condition is satisfied.
#11. _______ statement is entry controlled loop.
#12. _________ statement is exit controlled loop.
#13. _________ loop is executed until the expected evaluates to True.
#14. ______ function retrieves a character from the terminal and is assigns to the variable.
#15. __________ loop is constructed using the while statement, the test for continuation of the loop is carried out at the beginning of each pass.
#16. Do while requires a _____________ following the statement’s conditional part.
#17. The ____ statement is one of the most commonly used iteration constructs.
#18. The for statement includes an expression that specifies an initial value for an _________
#19. Statement is either a __________ or ___________ statement.
#20. The _______ loop can be nested within a while loop or another for loop.
#21. During execution of a loop it becomes desirable to skip a part of the loop or exit the loop is
#22. Jumping statement have _____ types.
#23. The ______ statement is used to terminate loops or exit from a switch.
#24. The _______ statement is used to bypass the reminder of the current pass through a loop.
#25. The ________ statement is used to return from a function.