Python Loops

Python Loops

1st - 6th Grade

9 Qs

quiz-placeholder

Similar activities

Code.org (1-8)

Code.org (1-8)

5th - 8th Grade

10 Qs

Iteration

Iteration

6th Grade

10 Qs

JavaScript Loop

JavaScript Loop

6th - 8th Grade

10 Qs

For loop (looper projects) (Fibonacci series)

For loop (looper projects) (Fibonacci series)

5th Grade

10 Qs

Flowcharts

Flowcharts

4th - 8th Grade

13 Qs

CS-First/Course 2 Vocabulary Review

CS-First/Course 2 Vocabulary Review

5th - 8th Grade

10 Qs

Python code

Python code

6th Grade

9 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