Skip to main content
Chapter 6 of 11
Chapter Summary

Flow of Control

CBSE · Class 11 · Computer Science

Summary of Flow of Control for CBSE Class 11 Computer Science. Key concepts, important points, and chapter overview.

34 questions72 flashcards5 concepts

Interactive on Super Tutor

Studying Flow of Control? Get the full interactive chapter.

Quizzes, flashcards, AI doubt-solver and a step-by-step study plan — built for chapter summary and more.

1,000+ Class 11 students started this chapter today

Overview

Flow of control is the order in which statements execute in a program. Python supports sequence, selection, and repetition to control this order. Sequence means statements run one after another. Selection uses conditions to choose a path. Repetition uses loops to repeat a set of statements. Python u

Key Concepts

The order of execution of statements

The order of execution of statements in a program is called flow of control. It describes how control moves from one statement to another.

Decision making in programming is implemented

Decision making in programming is implemented using the if..else statement. It chooses one path among alternatives based on a condition.

if condition

if condition: statement(s) A block under if runs only when the condition is true. There is no limit on the number of statements in the block.

if condition

if condition: statement(s) else: statement(s) It gives two alternative paths depending on whether the condition is true or false.

elif stands for else

elif stands for else..if and is used to chain multiple conditions. If one elif condition is true, its block executes and the if statement terminates.

Learning Objectives

  • Understand the meaning of flow of control in programming.
  • Distinguish between sequence, selection, and repetition.
  • Use if, if..else, and if..elif..else for decision making.
  • Understand indentation and its role in Python blocks.
  • Use for and while loops for repetition.

Frequently Asked Questions

What are the important topics in Flow of Control for CBSE Class 11 Computer Science?
Flow of Control covers several key topics that are frequently asked in CBSE Class 11 board exams. Focus on the core concepts listed on this page and practise related questions to build confidence.
How to score full marks in Flow of Control — CBSE Class 11 Computer Science?
Understand the core concepts first, then work through the 34 practice questions available for this chapter. Revise formulas and definitions regularly, and use flashcards for quick recall before the exam.

Sources & Official References

Content is aligned to the official syllabus. Refer to the board website for the latest curriculum.

For serious students

Get the full Flow of Control chapter — for free.

Quizzes, flashcards, AI doubt-solver and a step-by-step study plan for CBSE Class 11 Computer Science.