Python Loops

Python Loops

1st - 6th Grade

9 Qs

quiz-placeholder

Similar activities

Grade 3 Computer Review

Grade 3 Computer Review

3rd Grade

10 Qs

E-Waste

E-Waste

3rd Grade

10 Qs

Google Apps

Google Apps

4th - 12th Grade

10 Qs

Roblox

Roblox

1st - 8th Grade

11 Qs

Grade5Review

Grade5Review

5th Grade

10 Qs

TYPES OF COMPUTER

TYPES OF COMPUTER

3rd - 4th Grade

10 Qs

Artificial Intelligence Quiz

Artificial Intelligence Quiz

6th Grade

12 Qs

Working with Text : Summary

Working with Text : Summary

6th Grade

10 Qs

Python Loops

Python Loops

Assessment

Quiz

Computers

1st - 6th Grade

Practice Problem

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