Python Loops

Python Loops

1st - 6th Grade

9 Qs

quiz-placeholder

Similar activities

Guess The Youtuber

Guess The Youtuber

5th - 8th Grade

10 Qs

Privacy and Personal Information

Privacy and Personal Information

4th Grade

10 Qs

LÀM QUEN VỚI TỆP - TIN 4

LÀM QUEN VỚI TỆP - TIN 4

4th Grade

13 Qs

Encryption and Public Keys

Encryption and Public Keys

6th - 8th Grade

8 Qs

Spanish constitution

Spanish constitution

6th Grade

12 Qs

Class 1E L-6,7,8

Class 1E L-6,7,8

1st Grade

12 Qs

multimedia ks2

multimedia ks2

5th Grade

10 Qs

Computer 5 | Microsoft Word - Columns

Computer 5 | Microsoft Word - Columns

5th Grade

10 Qs

Python Loops

Python Loops

Assessment

Quiz

Computers

1st - 6th Grade

Medium

Created by

Andy Nie

Used 1K+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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