Python loops

Python loops

8th Grade

43 Qs

quiz-placeholder

Similar activities

Introduction to Microsoft Word

Introduction to Microsoft Word

8th - 12th Grade

40 Qs

Python Test

Python Test

8th - 12th Grade

40 Qs

Year 9 Assessment 24-25

Year 9 Assessment 24-25

8th Grade

46 Qs

Computer Technology Terms # 6 and Techniques

Computer Technology Terms # 6 and Techniques

6th - 8th Grade

45 Qs

Python Test 2

Python Test 2

7th - 12th Grade

44 Qs

untitled

untitled

8th Grade - University

48 Qs

qbasic

qbasic

8th Grade

38 Qs

python

python

6th - 9th Grade

46 Qs

Python loops

Python loops

Assessment

Quiz

Computers

8th Grade

Medium

Created by

Ержан Ауезов

Used 8+ times

FREE Resource

43 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

The program above:

prints all the odd numbers between 1 and 20

prints all even numbers between 1 and 20

print all the odd numbers between 1 and 21

prints all the even numbers between 1 and 21

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

How many times the following loop will execute:

i = 1

while True:

print(i)

i += 2

0

2,4,6,8,..................

1,3,5,7,9,.............

1,2,4,6,8......................

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

for loop in python works on:

1.range

2.iteration

3.Both of the above

4.None of the above

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

i = 1

while True:

if i%7 == 0:

break

print(i)

i += 1

123456

1234567

error

none

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

i = 1

while False:

if i%2 == 0:

break

print(i)

i += 2

1

1357......

1234......

none of the mentioned

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

x = 123

for i in x:

print(i)

1 2 3

123

error

none of the above

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

for i in range(10):

if i == 5:

break

else:

print(i)

else:

print("Here")

01234 Here

012345 Here

01234

12345

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?