Python Programming Quiz

Python Programming Quiz

8th Grade

20 Qs

quiz-placeholder

Similar activities

Python1

Python1

8th Grade

24 Qs

Informatika

Informatika

8th Grade - University

20 Qs

Python 8 klasa

Python 8 klasa

8th Grade

20 Qs

Microsoft Excel Review Part 2

Microsoft Excel Review Part 2

8th Grade - University

20 Qs

G08- ICT Q1 Reviewer

G08- ICT Q1 Reviewer

8th Grade

20 Qs

Statements in Python

Statements in Python

8th Grade

20 Qs

Python Basics

Python Basics

6th - 8th Grade

20 Qs

Python Множества shpa

Python Множества shpa

4th Grade - University

20 Qs

Python Programming Quiz

Python Programming Quiz

Assessment

Quiz

Information Technology (IT)

8th Grade

Easy

Created by

Fadi Fadi

Used 3+ times

FREE Resource

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

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?