Python Loops

Python Loops

8th Grade

5 Qs

quiz-placeholder

Similar activities

Python Range() Function Quiz-8D

Python Range() Function Quiz-8D

8th Grade

5 Qs

MOAC Excel 2016 Lesson 7

MOAC Excel 2016 Lesson 7

8th - 12th Grade

10 Qs

L4 Iteration

L4 Iteration

8th Grade

10 Qs

IH-RECODE Gr-8

IH-RECODE Gr-8

8th Grade

10 Qs

KODEKIDDO HACK #MLH3

KODEKIDDO HACK #MLH3

4th Grade - University

10 Qs

ФО_22 урок_8 класс

ФО_22 урок_8 класс

8th Grade

10 Qs

Lý thuyết về Python

Lý thuyết về Python

3rd Grade - University

10 Qs

สอบปลายภาคชั้นม.2

สอบปลายภาคชั้นม.2

8th Grade

10 Qs

Python Loops

Python Loops

Assessment

Quiz

Computers

8th Grade

Medium

Used 3+ times

FREE Resource

5 questions

Show all answers

1.

REORDER QUESTION

1 min • 1 pt

Reorder the following

for x in range( num):

num=10

print(num)

break

if(x==7)

2.

LABELLING QUESTION

1 min • 1 pt

Label the following statements.

a
b
c
d
e
f
g
End
Display
Iterative Statement
Conditional Statement
Flow Control Statement
Start
Step

3.

DRAG AND DROP QUESTION

1 min • 1 pt

​ (a)   statement pass the control​ (b)   the loop.

break
out of
back to
continue

4.

CLASSIFICATION QUESTION

3 mins • 1 pt

Identify the valid and invalid variable names.

Groups:

(a) Valid

,

(b) Invalid

not-an-email

_number

12345

number_1

last_name

print

example123

@example.com

5.

MATCH QUESTION

1 min • 1 pt

Match the following

Iteration known in advance

if

sequence of loop

while

Iteration not known in advance

print

keyword

range( )

conditional statement

for