Flow of Control
Meghalaya Board · Class 11 · Computer Science
Flashcards for Flow of Control — Meghalaya Board Class 11 Computer Science. Quick Q&A cards covering key concepts, definitions, and formulas.
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 flashcards and more.
1,000+ Class 11 students started this chapter today
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 AllFrequently Asked Questions
What are the important topics in Flow of Control for Meghalaya Board Class 11 Computer Science?
How to score full marks in Flow of Control — Meghalaya Board Class 11 Computer Science?
How many flashcards are available for Flow of Control?
Sources & Official References
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
NCERT Solutions
Every textbook question solved step by step
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 Meghalaya Board Class 11 Computer Science.