Skip to main content
Chapter 6 of 11
Flashcards

Flow of Control

CBSE · Class 11 · Computer Science

Flashcards for Flow of Control — CBSE Class 11 Computer Science. Quick Q&A cards covering key concepts, definitions, and formulas.

30 questions25 flashcards5 concepts
25 Flashcards
Card 1Basic Concepts

What is flow of control in programming?

Answer

Flow of control is the order in which statements in a program are executed. It determines which statements are executed and in what sequence, allowing programs to make decisions and repeat actions bas

Card 2Control Structures

What are the two types of control structures supported by Python?

Answer

Python supports two types of control structures: 1. Selection (if, if-else, if-elif-else statements) 2. Repetition (for loops and while loops)

Card 3Selection - if statement

Write the syntax of a simple if statement in Python.

Answer

if condition: statement(s) Note: The statements inside the if block must be indented. The colon (:) after the condition is mandatory.

Card 4Selection - if-else statement

Write the syntax of if-else statement in Python.

Answer

if condition: statement(s) else: statement(s) If the condition is true, the if block executes; otherwise, the else block executes.

Card 5Selection - elif statement

What is the purpose of elif in Python and write its syntax?

Answer

elif (else-if) is used to check multiple conditions in sequence. It allows chaining of conditions. Syntax: if condition1: statement(s) elif condition2: statement(s) elif condition3: state

Card 6Indentation

What is indentation in Python and why is it important?

Answer

Indentation is the leading whitespace (spaces or tabs) at the beginning of a statement. In Python, indentation is used to define code blocks instead of curly brackets. All statements at the same inden

Card 7Basic Concepts

What is the difference between sequential execution and conditional execution?

Answer

Sequential execution: Statements are executed one after another in the order they are written, like following milestones on a road. Conditional execution: Statements are executed based on whether cer

Card 8Repetition - for loop

Write the syntax of a for loop in Python.

Answer

for <control-variable> in <sequence/items in range>: <statements inside body of the loop> Example: for i in range(5): print(i)

+17 more flashcards available

Practice All

Get detailed flashcards for Flow of Control

Super Tutor gives you interactive content for every chapter of CBSE Class 11 Computer Science — summaries, quizzes, flashcards, and more.

Try Super Tutor — It's Free

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.

Start by understanding all key concepts. Practise previous year questions from this chapter. Revise formulas and definitions regularly. Use flashcards for quick revision before the exam.

There are 25 flashcards for Flow of Control covering key definitions, formulas, and concepts. Use them daily for 10–15 minutes for best results.

Sources & Official References

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