PYTHON (FOR LOOP)

PYTHON (FOR LOOP)

1st - 10th Grade

10 Qs

quiz-placeholder

Similar activities

Python-Basic

Python-Basic

3rd Grade - University

15 Qs

Python

Python

7th - 8th Grade

12 Qs

Python Basics

Python Basics

6th - 12th Grade

9 Qs

Python Strings

Python Strings

8th - 12th Grade

14 Qs

Program Development - Python: Errors

Program Development - Python: Errors

8th - 10th Grade

13 Qs

Python

Python

9th Grade

15 Qs

Python Selection

Python Selection

8th - 9th Grade

10 Qs

Python Basics

Python Basics

1st Grade

12 Qs

PYTHON (FOR LOOP)

PYTHON (FOR LOOP)

Assessment

Quiz

Computers

1st - 10th Grade

Medium

Created by

Shilpa Thakur

Used 109+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 20 pts

Choose the correct output of the following code.

for i in range(10,15):       

print(i)

10

11

12

13

14

10

11

12

13

14

15

11

12

13

14

Error

2.

MULTIPLE CHOICE QUESTION

1 min • 20 pts

What is the output of the following:-

x = "123"

for i in x:

print("a")

x

1

a

1

2

3

x

1

2

3

a

a

a

3.

OPEN ENDED QUESTION

2 mins • 20 pts

Q3. Write a for loop so that every item in the list is printed.

lst=["koala", "cat", "fox", "panda", "chipmunk", "sloth", "penguin", "dolphin"]

Evaluate responses using AI:

OFF

4.

MULTIPLE CHOICE QUESTION

1 min • 20 pts

Q4. What is the output of the following:-

print(list(range(10)))

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

[1,2,3,4,5,6,7,8,9,10]

[2,3,4,5,6,7,8,9,10,11]

[0,1,2,3,4,5,6,7,8,9,10]

5.

MULTIPLE CHOICE QUESTION

1 min • 20 pts

Choose the correct answer

for i in "python":

print(i, end=='?')

Error

p?

y?

t?

h?

o?

n?

p?y?t?h?o?n?

both b and c

6.

OPEN ENDED QUESTION

2 mins • 20 pts

Find the error and correct it

i=2

for x in (i):

x+=1

print(x)

Evaluate responses using AI:

OFF

7.

OPEN ENDED QUESTION

30 sec • 20 pts

What is for loop.

Evaluate responses using AI:

OFF

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?