Computational Thinking and Programming-I Quiz 7 May 29, 2023May 29, 2023 by Jitendra SinghTopics- Flow of Control: introduction, use of indentation, sequential flow, conditional and iterative flow1. What does flow of control refer to in programming? The order in which statements are written in the program The direction in which data flows through the program The decision-making process in the program The flow of execution through the program2. What is the purpose of indentation in Python? To make the code look neat and organized To indicate the start and end of a block of code To define the structure of the program To improve the performance of the program3. What is sequential flow of control? Execution of statements in a specific order from top to bottom Execution of statements based on a condition Repetitive execution of statements until a condition is met Execution of statements in a random order4. Which control structure is used for making decisions in programming? Looping Indentation Conditional statements Function calls5. What is the purpose of conditional statements? To repeat a block of code multiple times To control the flow of execution based on a condition To improve the readability of the code To define the structure of a function6. Which of the following is a conditional statement in Python? for loop while loop if statement break statement7. What is iterative flow of control? Execution of statements in a specific order from top to bottom Execution of statements based on a condition Repetitive execution of statements until a condition is met Execution of statements in a random order8. Which control structure is used for repetitive execution of code in programming? Looping Indentation Conditional statements Function calls9. What is the purpose of loops in programming? To make the code look neat and organized To indicate the start and end of a block of code To define the structure of the program To repeat a block of code multiple times10. Which of the following is an iterative control structure in Python? if statement for loop break statement function call Loading …