What is the output of the following code:
for i in range(5):
print(i)
Mastering Python Loops and Conditionals
Quiz
•
Computers
•
12th Grade
•
Easy
Diljith (RCSS)
Used 1+ times
FREE Resource
20 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
10 sec • 1 pt
What is the output of the following code:
for i in range(5):
print(i)
0 1 2 3 4
5
10
-1
2.
MULTIPLE CHOICE QUESTION
10 sec • 1 pt
Which of the following is a valid while loop syntax in Python?
while condition: do_something()
while: do_something()
do_something() while condition
while (condition) do_something()
3.
MULTIPLE CHOICE QUESTION
20 sec • 1 pt
What will be the output of the following code:
x = 10
while x > 0:
print(x)
x -= 1
10 9 8 7 6 5 4 3 2 1
0
-1
11
4.
MULTIPLE CHOICE QUESTION
10 sec • 1 pt
How do you break out of a loop in Python?
Use the 'exit' function to break out of a loop.
Remove the loop condition to stop the loop.
Use the 'break' statement to exit a loop.
Use the 'continue' statement to exit a loop.
5.
MULTIPLE CHOICE QUESTION
10 sec • 1 pt
What is the purpose of the 'continue' statement in a loop?
To end the loop immediately and exit.
To repeat the current iteration of a loop.
To pause the loop for a specified time.
To skip the current iteration of a loop.
6.
MULTIPLE CHOICE QUESTION
10 sec • 1 pt
Which of the following correctly defines a list in Python?
A list in Python is a collection of items that can only contain integers.
A list in Python is a fixed-size array that cannot be modified after creation.
A list in Python is an ordered collection of items enclosed in square brackets.
A list in Python is an unordered collection of items enclosed in curly braces.
7.
MULTIPLE CHOICE QUESTION
10 sec • 1 pt
What is the difference between a list and a tuple in Python?
The main difference is that lists are mutable and tuples are immutable.
Lists can contain only numbers while tuples can contain any data type.
Lists are defined using parentheses while tuples are defined using square brackets.
Tuples are faster than lists because they use more memory.
16 questions
Test - Python básico II
Quiz
•
9th - 12th Grade
15 questions
Section 3D: Collect and process data using dictionaries
Quiz
•
12th Grade
15 questions
Problem Solving using Python and R - UNIT II - Dictionary
Quiz
•
12th Grade
15 questions
Exploring Python Fundamentals
Quiz
•
12th Grade - University
25 questions
GCSE Computer Science: Programming (Python)
Quiz
•
9th - 12th Grade
25 questions
Algorithms - python (GCSE)
Quiz
•
10th - 12th Grade
17 questions
Exceptions in Pythons
Quiz
•
12th Grade
15 questions
Grade 8 End of Unit Revision
Quiz
•
8th Grade - University
15 questions
Character Analysis
Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25
Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
20 questions
Taxes
Quiz
•
9th - 12th Grade
17 questions
Parts of Speech
Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression
Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing
Quiz
•
9th - 12th Grade
10 questions
Identifying equations
Quiz
•
KG - University