CBSE Class 11 Computer Science – Flow of Control

Previous Chapter Next Chapter

Study Materials

11th

11th - Computer Science

Flow of Control

Chapter Overview

This chapter explores how a program makes decisions and repeats tasks using control structures. You'll learn about conditional branching using if-elif-else statements, iteration using while and for loops, and flow control statements like break, continue, and pass in Python.

Important Keywords

  • Flow of Control: The order in which individual statements, instructions, or function calls are executed.
  • Conditional Statement: A decision-making structure (if, elif, else).
  • Loop: A control structure used to repeat a block of code (for, while).
  • Break: Terminates the nearest enclosing loop.
  • Continue: Skips the current iteration and moves to the next loop cycle.
  • Pass: Acts as a placeholder and does nothing.

Detailed Notes

to view full chapter (Flow of Control - Detailed Notes) resources.