Python Quiz (Loops)

Python Quiz (Loops)

KG - 6th Grade

5 Qs

quiz-placeholder

Similar activities

ACIT group 4

ACIT group 4

University

10 Qs

API Styles Fundamentals

API Styles Fundamentals

Professional Development

10 Qs

Digital banking

Digital banking

KG

10 Qs

WordPad Gr 2 Part 1

WordPad Gr 2 Part 1

2nd Grade

10 Qs

Encryption and Public Keys

Encryption and Public Keys

6th - 8th Grade

8 Qs

01_BLOCK1

01_BLOCK1

KG

10 Qs

Chapter 11 Quizz

Chapter 11 Quizz

University

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