VOOZH about

URL: https://www.analyticsvidhya.com/blog/2024/02/mcqs-on-python-control-flowif-statements-and-loops/

⇱ 30+ MCQs on Python Control Flow(If Statements and Loops)


India's Most Futuristic AI Conference Is Back – Bigger, Sharper, Bolder

  • d
  • :
  • h
  • :
  • m
  • :
  • s

30+ MCQs on Python Control Flow(If Statements and Loops)

Ayushi Trivedi Last Updated : 19 Mar, 2024
9 min read

Welcome to our Python Control Flow quiz! Control flow structures like if statements, while loops, and for loops are essential for directing the flow of execution in Python programs. This quiz will test your understanding of how to use these structures effectively to make decisions, iterate over sequences, and control program flow. Get ready to sharpen your skills and deepen your understanding of Python control Python Interview Questions.

30+ Python Interview Questions on Python Control Flow(If Statements and Loops)

Q1. What is the primary purpose of the if statement in Python?

a) To execute a block of code based on a condition

b) To perform mathematical operations

c) To repeat a block of code

d) To define a function

Answer: a

Explanation: The if statement is used to execute a block of code if a specified condition is true.

Q2. What will be the output of the following code snippet?

x = 10
if x > 5:
 print("x is greater than 5")

a) x is greater than 5

b) x is less than 5

c) x is equal to 5

d) No output

Answer: a

Explanation: Since the condition x > 5 is true, the code block within the if statement is executed, resulting in β€œx is greater than 5” being printed.

Q3. Which keyword is used to execute a block of code if the condition in the if statement is false?

a) else

b) elif

c) while

d) for

Answer: a

Explanation: The else keyword is used to execute a block of code if the condition in the if statement is not true.

Q4. What is the purpose of the elif statement in Python?

a) To execute a block of code if the previous conditions are false

b) To define a loop

c) To perform arithmetic operations

d) To exit from a loop

Answer: a

Explanation: The elif statement is used to check additional conditions if the previous conditions in the if statement are false.

Q5. What will be the output of the following code snippet?

x = 5
if x < 3:
 print("x is less than 3")
elif x == 3:
 print("x is equal to 3")
else:
 print("x is greater than 3")

a) x is less than 3 b) x is equal to 3 c) x is greater than 3 d) No output

Answer: c

Explanation: Since none of the previous conditions were met, the else block is executed, resulting in β€œx is greater than 3” being printed.

Q6. How can you execute multiple statements under a single if block in Python?

a) Separate statements with a semicolon

b) Indent the statements to the same level

c) Use the and keyword between statements

d) Use the elif keyword

Answer: b

Explanation: In Python, multiple statements under a single if block are executed by indenting them to the same level.

Q7. What will the following code snippet print?

x = 10
if x < 5:
 print("x is less than 5")
elif x > 15:
 print("x is greater than 15")
else:
 print("x is between 5 and 15")

a) x is less than 5 b) x is greater than 15 c) x is between 5 and 15 d) No output

Answer: c

Explanation: Since none of the previous conditions were met, the else block is executed, resulting in β€œx is between 5 and 15” being printed.

Q8. What is the purpose of the while loop in Python?

a) To execute a block of code repeatedly until a condition is false

b) To execute a block of code a fixed number of times

c) To define a function

d) To iterate over items in a sequence

Answer: a

Explanation: The while loop is used to execute a block of code repeatedly until a specified condition is false.

Q9. What is the syntax for a while loop in Python?

a) while condition:

b) while condition():

c) while (condition):

d) while loop condition:

Answer: a

Explanation: In Python, the while loop syntax requires the condition to be followed by a colon (:).

Q10. How can you exit a loop prematurely in Python?

a) Using the break statement
b) Using the continue statement
c) Using the pass statement
d) Using the exit function

Answer: a

Explanation: The break statement is used to exit a loop prematurely, regardless of the loop condition, and move to the next statement outside the loop.

Q11. What is the purpose of the for loop in Python?

a) To execute a block of code repeatedly until a condition is false
b) To iterate over items in a sequence
c) To execute a block of code a fixed number of times
d) To define a function

Answer: b

Explanation: The for loop is used to iterate over items in a sequence such as lists, tuples, dictionaries, or strings.

Q12. What is the syntax for a for loop in Python?

a) for item in sequence:
b) for item in range(n):
c) for index in range(len(sequence)):
d) All of the above

Answer: d

Explanation: Python offers multiple ways to iterate using a for loop, including iterating directly over items in a sequence or using the range() function.

Q13. What will the following code snippet print?

fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
 print(fruit)

a) apple banana cherry
b) [β€œapple”, β€œbanana”, β€œcherry”]
c) 0 1 2
d) No output

Answer: a

Explanation: The for loop iterates over each element in the fruits list and prints each element individually.

Q14. How can you skip the current iteration of a loop and continue with the next iteration?

a) Using the skip statement
b) Using the pass statement
c) Using the break statement
d) Using the continue statement

Answer: d

Explanation: The continue statement skips the current iteration of a loop and proceeds with the next iteration.

Q15. What is the purpose of the range() function in Python?

a) To generate a sequence of numbers
b) To iterate over items in a sequence
c) To define a function
d) To execute a block of code repeatedly until a condition is false

Answer: a

Explanation: The range() function generates a sequence of numbers usable for iteration, as indices, or any purpose requiring a sequence of numbers.

Q16. What will the following code snippet print?

for i in range(3):
 print(i)

a) 0 1 2
b) 1 2 3
c) 2 1 0
d) 3 2 1 0

Answer: a

Explanation: The range(3) function generates numbers from 0 to 2 (inclusive), so the loop will print each number in that range.

Q17. What will be the output of the following code?

for i in range(1, 6):
 if i == 3:
 continue
 print(i)

a) 1 2
b) 1 2 3
c) 1 2 4 5
d) 1 2 4

Answer: c

Explanation: The continue statement skips the rest of the loop and moves to the next iteration. So when i equals 3, it skips printing that value.

Q18. What will be the output of the following code?

for i in range(3):
 for j in range(3):
 print(i + j, end=' ')
 print()

a) 0 1 2
1 2 3
2 3 4

b) 0 1 2
1 2 3
2 3 4
3 4 5

c) 0 1 2
1 2 3
2 3 4
4 5 6

d) 0 1 2
2 3 4
4 5 6

Answer: a

Explanation: The outer loop iterates three times, and for each iteration of the outer loop, the inner loop also iterates three times. The values of i and j are added together and printed. Each iteration of the outer loop starts a new line.

Q19. What will be printed by the following code?

num = 5
while num > 0:
 print(num)
 num -= 1
 if num == 3:
 break
else:
 print("Done")

a) 5 4 3 2 1
b) 5 4
c) Done
d) 5 4 3

Answer: b

Explanation: The while loop iterates as long as num is greater than 0. Inside the loop, num is decremented by 1 in each iteration. When num becomes 3, the break statement is encountered, and the loop terminates.

Q20. What is the output of the following code?

x = 10
if x > 5:
 print("A")
elif x > 7:
 print("B")
else:
 print("C")

a) A
b) B
c) C
d) A and B

Answer: a

Explanation: The condition x > 5 evaluates to True since x is 10. Therefore, the code inside the if block executes, printing β€œA”.

Q21. What will be the output of the following code?

x = 5
while x > 0:
 print(x, end=" ")
 x -= 2
 if x == 1:
 break
else:
 print("Done")

a) 5 3 1
b) 5 3
c) 5 3 Done
d) 5 3 1 Done

Answer: a

Explanation: The while loop iterates until x becomes 1. Inside the loop, x is decremented by 2 in each iteration. When x becomes 1, the loop breaks, and the else block is not executed.

Q22. What is the output of the following code?

for i in range(5):
 if i == 2:
 continue
 print(i, end=" ")

a) 0 1 3 4
b) 0 1 2 3 4
c) 0 1 3 4 5
d) 0 1 2 3 4 5

Answer: a

Explanation: The continue statement skips the current iteration when i equals 2. Therefore, 2 is not printed.

Q23. What is the output of the following code?

num = 0
while num < 5:
 print(num)
 num += 1
else:
 print("Loop completed.")

a) 0 1 2 3 4
b) 0 1 2 3 4 Loop completed.
c) Loop completed.
d) This code will result in an error.

Answer: b

Explanation: The while loop iterates until num is less than 5, printing the value of num in each iteration. Once num becomes 5, the loop terminates, and the else block is executed.

Q24. What will be the output of the following code?

x = 10
if x > 5:
 print("Greater than 5")
if x > 8:
 print("Greater than 8")
if x > 12:
 print("Greater than 12")
else:
 print("Equal or less than 12")

a) Greater than 5
Greater than 8
Equal or less than 12

b) Greater than 5
Greater than 8
Greater than 12
Equal or less than 12

c) Greater than 5
Greater than 8

d) Equal or less than 12

Answer: a

Explanation: Each if statement is independent of the others, so all conditions that are true will execute their corresponding print statements.

Q25. What will be the output of the following code?

for i in range(3):
 for j in range(3):
 print(i * j, end=' ')
 print()

a) 0 0 0
0 1 2
0 2 4

b) 0 1 2
0 2 4
0 3 6

c) 0 0 0
0 1 2
0 2 4
0 3 6

d) 0 0 0
0 1 2
0 1 2

Answer: a

Explanation: The code uses nested loops to iterate over each combination of i and j, printing their product. The print() function with no arguments prints a newline, separating each row.

Q26. What will be the output of the following code?

num = 10
while num > 0:
 print(num)
 num -= 3
else:
 print("Loop completed.")

a) 10 7 4 1 Loop completed.
b) 10 7 4 1
c) Loop completed.
d) This code will result in an error.

Answer: a

Explanation: The while loop decrements num by 3 in each iteration until num becomes 0. Once num becomes 0, the loop terminates, and the else block is executed.

Q27. What will the following code snippet print?

for i in range(3):
 pass
print(i)

a) 0 1 2
b) 1 2 3
c) 2 1 0
d) 3 2 1 0

Answer: c

Explanation: The loop iterates over the numbers from 0 to 2, but the pass statement inside the loop does nothing, so the value of i remains 2 when printed outside the loop.

Q28. What is the purpose of the pass statement in Python?

a) To exit from a loop prematurely
b) To skip the current iteration of a loop
c) To execute a block of code if a condition is false
d) To do nothing and act as a placeholder

Answer: d

Explanation: The pass statement does nothing and acts as a placeholder where syntactically a statement is required but no action is desired or needed.

Q29. What is the purpose of the else block in a loop in Python?

a) To execute if the loop encounters an error
b) To execute if the loop completes without encountering a break statement
c) To execute if the loop encounters a continue statement
d) To execute if the loop encounters a pass statement

Answer: b

Explanation: The else block in a loop executes when the loop completes normally, meaning it doesn’t encounter a break statement.

Q30. What is the output of the following code?

x = 10
if x > 5:
 print("Hello")
elif x > 8:
 print("Hi")
else:
 print("Hey")

a) Hey
b) Hi
c) Hello
d) Hello, Hi

Answer: c

Explanation: The condition x > 5 is true because x is 10, so the corresponding code block is executed, printing β€œHello”. Even though x > 8 is also true, the elif block is skipped because the if condition was already met.

Q31. What is the output of the following code?

for i in range(1, 6):
 if i % 2 == 0:
 print(i)
 continue
 print("*")

a) \n2\n\n4\n*
b) \n2\n\n4\n*\n
c) \n2\n\n*\n4\n
d) \n\n2\n*\n4\n

Answer: b

Explanation: In this code, for each number i from 1 to 5, if i is even, it’s printed, and the loop continues to the next iteration using continue. If i is odd, β€œ*” is printed instead.

Q32. What will be the output of the following code?

x = 5
while x > 0:
 print(x)
 x -= 1
else:
 print("Done")

a) 5\n4\n3\n2\n1\nDone
b) Done\n5\n4\n3\n2\n1
c) 5\n4\n3\n2\n1
d) Done

Answer: a

Explanation: The while loop prints the values of x from 5 to 1, then after x becomes 0, the else block is executed, printing β€œDone”.

Q33. What will be the output of the following code?

for i in range(1, 6):
 if i == 3:
 break
 print(i)
else:
 print("Loop completed.")

a) 1\n2
b) 1\n2\n3\n4\n5\nLoop completed.
c) 1\n2\n3\n4\n5
d) 1\n2\n3

Answer: a

Explanation: The loop breaks when i equals 3, so the else block is not executed.

Congratulations on completing the Python Control Flow quiz! Control flow structures are fundamental to writing efficient and effective Python code. By mastering if statements, while loops, for loops, and loop control statements, you’re equipped to create programs that can make decisions, repeat tasks, and handle various scenarios with ease. Keep practicing and experimenting with different control flow scenarios to become a proficient Python programmer. Well done, and happy coding!

You can also enroll in out free Python Course Today!

Read our more articles related to MCQs in Python:

My name is Ayushi Trivedi. I am a B. Tech graduate. I have 3 years of experience working as an educator and content editor. I have worked with various python libraries, like numpy, pandas, seaborn, matplotlib, scikit, imblearn, linear regression and many more. I am also an author. My first book named #turning25 has been published and is available on amazon and flipkart. Here, I am technical content editor at Analytics Vidhya. I feel proud and happy to be AVian. I have a great team to work with. I love building the bridge between the technology and the learner.

Login to continue reading and enjoy expert-curated content.

Free Courses

Generative AI - A Way of Life

Explore Generative AI for beginners: create text and images, use top AI tools, learn practical skills, and ethics.

Getting Started with Large Language Models

Master Large Language Models (LLMs) with this course, offering clear guidance in NLP and model training made simple.

Building LLM Applications using Prompt Engineering

This free course guides you on building LLM apps, mastering prompt engineering, and developing chatbots with enterprise data.

Improving Real World RAG Systems: Key Challenges & Practical Solutions

Explore practical solutions, advanced retrieval strategies, and agentic RAG systems to improve context, relevance, and accuracy in AI-driven applications.

Microsoft Excel: Formulas & Functions

Master MS Excel for data analysis with key formulas, functions, and LookUp tools in this comprehensive course.

Responses From Readers

Flagship Programs

GenAI Pinnacle Program| GenAI Pinnacle Plus Program| AI/ML BlackBelt Program| Agentic AI Pioneer Program

Free Courses

Generative AI| DeepSeek| OpenAI Agent SDK| LLM Applications using Prompt Engineering| DeepSeek from Scratch| Stability.AI| SSM & MAMBA| RAG Systems using LlamaIndex| Building LLMs for Code| Python| Microsoft Excel| Machine Learning| Deep Learning| Mastering Multimodal RAG| Introduction to Transformer Model| Bagging & Boosting| Loan Prediction| Time Series Forecasting| Tableau| Business Analytics| Vibe Coding in Windsurf| Model Deployment using FastAPI| Building Data Analyst AI Agent| Getting started with OpenAI o3-mini| Introduction to Transformers and Attention Mechanisms

Popular Categories

AI Agents| Generative AI| Prompt Engineering| Generative AI Application| News| Technical Guides| AI Tools| Interview Preparation| Research Papers| Success Stories| Quiz| Use Cases| Listicles

Generative AI Tools and Techniques

GANs| VAEs| Transformers| StyleGAN| Pix2Pix| Autoencoders| GPT| BERT| Word2Vec| LSTM| Attention Mechanisms| Diffusion Models| LLMs| SLMs| Encoder Decoder Models| Prompt Engineering| LangChain| LlamaIndex| RAG| Fine-tuning| LangChain AI Agent| Multimodal Models| RNNs| DCGAN| ProGAN| Text-to-Image Models| DDPM| Document Question Answering| Imagen| T5 (Text-to-Text Transfer Transformer)| Seq2seq Models| WaveNet| Attention Is All You Need (Transformer Architecture) | WindSurf| Cursor

Popular GenAI Models

Llama 4| Llama 3.1| GPT 4.5| GPT 4.1| GPT 4o| o3-mini| Sora| DeepSeek R1| DeepSeek V3| Janus Pro| Veo 2| Gemini 2.5 Pro| Gemini 2.0| Gemma 3| Claude Sonnet 3.7| Claude 3.5 Sonnet| Phi 4| Phi 3.5| Mistral Small 3.1| Mistral NeMo| Mistral-7b| Bedrock| Vertex AI| Qwen QwQ 32B| Qwen 2| Qwen 2.5 VL| Qwen Chat| Grok 3

AI Development Frameworks

n8n| LangChain| Agent SDK| A2A by Google| SmolAgents| LangGraph| CrewAI| Agno| LangFlow| AutoGen| LlamaIndex| Swarm| AutoGPT

Data Science Tools and Techniques

Python| R| SQL| Jupyter Notebooks| TensorFlow| Scikit-learn| PyTorch| Tableau| Apache Spark| Matplotlib| Seaborn| Pandas| Hadoop| Docker| Git| Keras| Apache Kafka| AWS| NLP| Random Forest| Computer Vision| Data Visualization| Data Exploration| Big Data| Common Machine Learning Algorithms| Machine Learning| Google Data Science Agent
πŸ‘ Av Logo White

Continue your learning for FREE

Forgot your password?
πŸ‘ Av Logo White

Enter OTP sent to

Edit

Wrong OTP.

Enter the OTP

Resend OTP

Resend OTP in 45s

πŸ‘ Popup Banner
πŸ‘ AI Popup Banner