Python Quiz (Loops)

Python Quiz (Loops)

KG - 6th Grade

5 Qs

quiz-placeholder

Similar activities

term3_csc401 classwork -1

term3_csc401 classwork -1

9th Grade

9 Qs

T_4.2 Identifier, Data Types, Operators & Expressions

T_4.2 Identifier, Data Types, Operators & Expressions

12th Grade - University

10 Qs

Python Quiz (More Loops)

Python Quiz (More Loops)

KG - 6th Grade

9 Qs

true or false

true or false

9th Grade

10 Qs

Variables and Data Types

Variables and Data Types

10th - 12th Grade

10 Qs

Python: Functions and Parameters

Python: Functions and Parameters

9th - 12th Grade

10 Qs

More about keyboard

More about keyboard

2nd - 3rd Grade

10 Qs

Python Variables

Python Variables

7th - 12th Grade

10 Qs

Python Quiz (Loops)

Python Quiz (Loops)

Assessment

Quiz

Computers

KG - 6th Grade

Medium

Created by

Jerry Xiao

Used 43+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

True or False: Reducing the duplication of code is one of the advantages of using a loop structure.

True

False

2.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

True or False: The output of the following code is “cat”


pets = ["cat", "dog"]

print(pets[0][0])

True

False

3.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

True or False: The output of these two loops is the same


for num in range(4):ㅤㅤ

print(num)


for num in range(1, 5):ㅤㅤ

print(num)

True

False

4.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What’s the output of the following code


for num in range(2, 9, 2):

print(num)

2 4 6 8

2 5 8

1 3 5 7 9

2 3 4 5 6 7 8 9

5.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

When will the following loop terminate?


while keep_on_going != 999:

When keep_on_going is greater than 999

When keep_on_going is not equal to 999

When keep_on_going is equal to 999

When keep_on_going is less than 999