Search Header Logo

Python Programming Quiz

Authored by Fadi Fadi

Information Technology (IT)

8th Grade

Used 3+ times

Python Programming Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code print? for i in range(3): print(i)

1 2 3

0 1 2

0 1 2 3

1 2

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of this code? for letter in "cat": print(letter)

cat

c a t

c t a

a c t

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these loops prints numbers 1 to 5?

for i in range(1, 6): print(i)

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

for i in range(1, 5): print(i)

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

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will this code do? for i in range(2, 10, 2): print(i)

Print 2 to 10

Print even numbers between 2 and 10

Print 10 numbers

Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop will NOT print anything?

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

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

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

for i in range(1, 4): print(i)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to access "banana" from this list? fruits = ["apple", "banana", "cherry"]

fruits(1)

fruits[2]

fruits[1]

fruits[banana]

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output? numbers = [10, 20, 30] print(len(numbers))

2

3

4

Error

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?