Mastering Python Loops and Conditionals

Mastering Python Loops and Conditionals

12th Grade

20 Qs

quiz-placeholder

Similar activities

Conceitos Básicos de Python

Conceitos Básicos de Python

12th Grade

16 Qs

python quiz

python quiz

12th Grade

20 Qs

Strings, Lists & Tuples

Strings, Lists & Tuples

9th - 12th Grade

20 Qs

Problem Solving using Python and R - UNIT II - Dictionary

Problem Solving using Python and R - UNIT II - Dictionary

12th Grade

15 Qs

GCSE Computer Science: Programming (Python)

GCSE Computer Science: Programming (Python)

9th - 12th Grade

25 Qs

iGCSE Computer Science: Problem Solving

iGCSE Computer Science: Problem Solving

9th - 12th Grade

20 Qs

Python Basics

Python Basics

KG - University

16 Qs

Python -Iteration (loops)

Python -Iteration (loops)

7th - 12th Grade

20 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?