Mastering Python Loops and Conditionals

Mastering Python Loops and Conditionals

12th Grade

20 Qs

quiz-placeholder

Similar activities

Python Basics Review (TSK)

Python Basics Review (TSK)

9th - 12th Grade

20 Qs

Computer Science LISTS

Computer Science LISTS

12th Grade

18 Qs

Functions in Python

Functions in Python

9th - 12th Grade

16 Qs

Basic Python

Basic Python

10th - 12th Grade

20 Qs

Python Revision Tour - I

Python Revision Tour - I

12th Grade

15 Qs

Python_2R

Python_2R

KG - Professional Development

20 Qs

Computer Science - Python

Computer Science - Python

9th - 12th Grade

15 Qs

untitled

untitled

8th Grade - University

25 Qs

Mastering Python Loops and Conditionals

Mastering Python Loops and Conditionals

Assessment

Quiz

Computers

12th Grade

Easy

Created by

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.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?