Fill In the Blanks For Flow of Control Class 11 Computer Science (CS), Informatics Practices (IP)
1. The _____ statement forms the selection construct in Python.
2. The _____ statement is a do nothing statement in Python.
3. The _____ and _____ statements for the repetition construct in Python.
4. Three constructs that govern the flow of control are _____, _____ and _____.
5. In Python, _____ defines a block of statements.
6. An _____ statement has less number of conditional checks than two successive ifs.
7. The _____ operator tests if a given value is contained in a sequence or not.
8. The two membership operators are _____ and _____ _____.
9. An iteration refers to one repetition of a _____.
10. The _____ loop iterates over a sequence.
11. The _____ loop tests a condition before executing the body-of-the-loop.
12. The _____ clause can occur with an if as well as with loops.
13. The _____ block of a loop gets executed when a loop ends normally.
14. The else block of a loop will not get executed if a _____ statement has terminated the loop.
15. The _____ statement terminates the execution of the whole loop.
16. The _____ statement terminates only a single iteration of the loop.
17. The break and continue statements, together are called _____ statements.
18. In a nested loop, a break statement inside the inner loop, will terminate the _____ loop only.
2. The _____ statement is a do nothing statement in Python.
3. The _____ and _____ statements for the repetition construct in Python.
4. Three constructs that govern the flow of control are _____, _____ and _____.
5. In Python, _____ defines a block of statements.
6. An _____ statement has less number of conditional checks than two successive ifs.
7. The _____ operator tests if a given value is contained in a sequence or not.
8. The two membership operators are _____ and _____ _____.
9. An iteration refers to one repetition of a _____.
10. The _____ loop iterates over a sequence.
11. The _____ loop tests a condition before executing the body-of-the-loop.
12. The _____ clause can occur with an if as well as with loops.
13. The _____ block of a loop gets executed when a loop ends normally.
14. The else block of a loop will not get executed if a _____ statement has terminated the loop.
15. The _____ statement terminates the execution of the whole loop.
16. The _____ statement terminates only a single iteration of the loop.
17. The break and continue statements, together are called _____ statements.
18. In a nested loop, a break statement inside the inner loop, will terminate the _____ loop only.
Answer :-
1. if
2. pass
3. for, while
4. sequence, selection/decision, repetition/iteration
5. indentation
6. if-else
7. in
8. in, non in
9. loop
10. for
11. while
12. else
13. else
14. break
15. break
16. continue
17. jump
18. inner
Post a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )