CBSE Class 11 Computer Science Question 26 of 80

Conditional and Looping Constructs — Question 9

Back to all questions
9
Question

Question 9

In a Python program, a control structure:

  1. Directs the order of execution of the statements in the program
  2. Dictates what happens before the program starts and after it terminates
  3. Defines program-specific data structures
  4. Manages the input and output of control characters
Answer

Directs the order of execution of the statements in the program

Reason — A control structure in a Python program is used to direct the order of execution of the statements in the program. Control structures, such as loops and conditional statements, determine the flow of control in the program, allowing for the execution of code blocks based on certain conditions or repeatedly based on a loop condition.