adplus-dvertising

Welcome to the Loops in Python MCQs Page

Dive deep into the fascinating world of Loops in Python with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Loops in Python, a crucial aspect of Python. In this section, you will encounter a diverse range of MCQs that cover various aspects of Loops in Python, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within Python.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Loops in Python. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of Python.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Loops in Python. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Loops in Python MCQs | Page 1 of 7

Q1.
What is the output of the following?
x = ['ab', 'cd']
for i in x:
    i.upper()
print(x)
Discuss
Answer: (a).[‘ab’, ‘cd’].
Q2.
What is the output of the following?
x = ['ab', 'cd']
for i in x:
    x.append(i.upper())
print(x)
Discuss
Answer: (d).none of the mentioned
Q3.
What is the output of the following?
i = 1
while True:
    if i%3 == 0:
        break
    print(i)
 
    i + = 1
Discuss
Answer: (c).error
Q4.
What is the output of the following?
i = 1
while True:
    if i%0O7 == 0:
        break
    print(i)
    i += 1
Discuss
Answer: (a).1 2 3 4 5 6
Q5.
What is the output of the following?
i = 5
while True:
    if i%0O11 == 0:
        break
    print(i)
    i += 1
Discuss
Answer: (b).5 6 7 8
Q6.
What is the output of the following?
i = 5
while True:
    if i%0O9 == 0:
        break
    print(i)
    i += 1
Discuss
Answer: (d).error
Q7.
What is the output of the following?
i = 1
while True:
    if i%2 == 0:
        break
    print(i)
    i += 2
Discuss
Answer: (d).1 3 5 7 9 11 …
Q8.
What is the output of the following?
i = 2
while True:
    if i%3 == 0:
        break
    print(i)
    i += 2
Discuss
Answer: (b).2 4
Q9.
What is the output of the following?
i = 1
while False:
    if i%2 == 0:
        break
    print(i)
    i += 2
Discuss
Answer: (d).none of the mentioned
Q10.
What is the output of the following?
True = False
while True:
    print(True)
    break
Discuss
Answer: (d).none of the mentioned
Page 1 of 7

Suggested Topics

Are you eager to expand your knowledge beyond Python? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!