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.
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
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)
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.
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.
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
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
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
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 AllGet 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 FreeFrequently 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?
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.
How many flashcards are available for Flow of Control?
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
- NCERT Official — ncert.nic.in
- CBSE Academic — cbseacademic.nic.in
- CBSE Official — cbse.gov.in
- National Education Policy 2020 — education.gov.in
Content is aligned to the official syllabus. Refer to the board website for the latest curriculum.
More Resources for Flow of Control
Important Questions
Practice with board exam-style questions
Syllabus
What topics to cover
Revision Notes
Key points for last-minute revision
Study Plan
Step-by-step plan to ace this chapter
Formula Sheet
All formulas in one place
Chapter Summary
Understand the chapter at a glance
Practice Quiz
Test yourself with a quick quiz
Concept Maps
See how topics connect visually