Flow of Control
Manipur Board · Class 11 · Computer Science
Practice quiz for Flow of Control — Manipur Board Class 11 Computer Science. MCQs and questions with answers to test your preparation.
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 practice quiz and more.
1,000+ Class 11 students started this chapter today
Quick Quiz: Flow of Control
0/4Tap an answer to check it instantly. No sign-up needed for these 4.
What will be the output of the following code? ```python age = 16 if age >= 18: print('Eligible') else: print('Not eligible') ```
What is the purpose of indentation in Python?
What will be the output? ```python for i in range(3): if i == 1: continue print(i) ```
What happens if the condition in a while loop is initially False?
Sample Questions
Which of the following are valid ways to create a range in Python?
Show answer
range(10), range(2, 10), range(0, 20, 3), range(10, 2, -2)
range(10) creates 0-9, range(2,10) creates 2-9, range(0,20,3) creates 0,3,6...18, range(10,2,-2) creates 10,8,6,4. range(5,1) is invalid as start>stop with positive step.
Which statements are true about the break statement?
Show answer
It terminates the current loop, Control moves to statement after the loop, It can be used in both for and while loops
Break statement terminates the current loop completely and transfers control to the statement immediately following the loop. It works in both for and while loops.
What will be the output? ```python num = 10 if num > 5: print('A') elif num > 8: print('B') else: print('C') ```
Show answer
A
In if-elif-else, only the first True condition is executed. Since num=10 > 5 is True, 'A' is printed and the elif block is not checked.
How many times will the inner loop execute in total? ```python for i in range(3): for j in range(2): print(i, j) ```
Show answer
6 times
The outer loop runs 3 times (i=0,1,2). For each iteration of outer loop, inner loop runs 2 times (j=0,1). Total: 3 × 2 = 6 times.
+26 more questions available
Practice AllFrequently Asked Questions
What are the important topics in Flow of Control for Manipur Board Class 11 Computer Science?
How to score full marks in Flow of Control — Manipur Board Class 11 Computer Science?
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
Flashcards
Quick-fire cards for active recall
Formula Sheet
All formulas in one place
Chapter Summary
Understand the chapter at a glance
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 Manipur Board Class 11 Computer Science.