Python Loops

Python Loops

1st - 6th Grade

9 Qs

quiz-placeholder

Similar activities

Code.org Vocabulary Quiz - Loops

Code.org Vocabulary Quiz - Loops

6th - 8th Grade

10 Qs

loops

loops

1st - 4th Grade

5 Qs

Unit 1 Vocab Quiz 1

Unit 1 Vocab Quiz 1

6th - 8th Grade

6 Qs

Iteration

Iteration

6th Grade

10 Qs

Code Combat JavaScript Quiz

Code Combat JavaScript Quiz

4th - 8th Grade

13 Qs

JavaScript Loop

JavaScript Loop

6th - 8th Grade

10 Qs

Grade 5 Coding Quiz

Grade 5 Coding Quiz

4th Grade

12 Qs

STD5&6_HOUR_OF_CODE_TEST1

STD5&6_HOUR_OF_CODE_TEST1

5th Grade

13 Qs

Python Loops

Python Loops

Assessment

Quiz

Computers

1st - 6th Grade

Medium

Created by

Andy Nie

Used 1K+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 12 pts

FOR loops are

loops which run an unknown number of times

loops which run for a specific number of times

the same as if statements

not part of programming

2.

MULTIPLE CHOICE QUESTION

1 min • 12 pts

WHILE loops are

loops which run an unknown number of times

loops which run for a specific number of times

the same as if statements

not part of programming

3.

MULTIPLE CHOICE QUESTION

1 min • 12 pts

A condition is

a statement that is either True or False

a string

an integer

a list

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To repeat until a particular condition is true use
while loop
for loop
if loop
indentation

5.

MULTIPLE CHOICE QUESTION

1 min • 12 pts

The condition for a while loop to continue could include which of the following?
While something equals something
While something is greater than something
While something is True
All of these

6.

MULTIPLE CHOICE QUESTION

1 min • 12 pts

Which kind of loop would be used?


I need a program that will keep letting me add money to a piggy bank until I get to £100.

FOR Loop

WHILE Loop

7.

MULTIPLE CHOICE QUESTION

1 min • 12 pts

Which kind of loop would be used?


I need a program that will keep letting me add a monthly payment for 12 months.

FOR Loop

WHILE Loop

8.

MULTIPLE CHOICE QUESTION

1 min • 12 pts

Which kind of loop would be used?


I need a guessing game program that will let me keep guessing until I get the right answer.

FOR Loop

WHILE Loop

9.

MULTIPLE CHOICE QUESTION

1 min • 12 pts

Which kind of loop would be used?


I need a revision program that will run through revision questions 4 times.

FOR Loop

WHILE Loop