Python Programming Quiz

Python Programming Quiz

8th Grade

20 Qs

quiz-placeholder

Similar activities

Selection Programming_If condition

Selection Programming_If condition

8th Grade - University

15 Qs

نشاط عملي في البايثون

نشاط عملي في البايثون

8th Grade

18 Qs

CAT 1 BASIC 8 COMPUTING

CAT 1 BASIC 8 COMPUTING

8th Grade

20 Qs

Python Basics

Python Basics

6th - 8th Grade

20 Qs

List | Set | String - Nâng cao (1)

List | Set | String - Nâng cao (1)

6th - 8th Grade

23 Qs

Microsoft Excel Review Part 2

Microsoft Excel Review Part 2

8th Grade - University

20 Qs

петон

петон

8th Grade

21 Qs

Python List Questions

Python List Questions

8th Grade

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