Skip to main content
Chapter 6 of 11
Flashcards

Flow of Control

Tripura Board · Class 11 · Computer Science

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

30 questions25 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 flashcards and more.

1,000+ Class 11 students started this chapter today

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

Frequently Asked Questions

What are the important topics in Flow of Control for Tripura Board Class 11 Computer Science?
Flow of Control covers several key topics that are frequently asked in Tripura Board 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 — Tripura Board Class 11 Computer Science?
Understand the core concepts first, then work through the 30 practice questions available for this chapter. Revise formulas and definitions regularly, and use flashcards for quick recall 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

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 Tripura Board Class 11 Computer Science.