Loops in Python

Loops in Python

7th - 11th Grade

15 Qs

quiz-placeholder

Similar activities

For and While Loops in Python

For and While Loops in Python

9th - 12th Grade

16 Qs

Python Loops

Python Loops

9th - 12th Grade

10 Qs

Python Basics Review

Python Basics Review

10th Grade

18 Qs

Python Beginner

Python Beginner

9th - 10th Grade

16 Qs

Python Basics Review (TSK)

Python Basics Review (TSK)

9th - 12th Grade

20 Qs

Functions in Python

Functions in Python

9th - 12th Grade

16 Qs

Python - Loops & Lists

Python - Loops & Lists

7th - 11th Grade

15 Qs

Python Loops Review

Python Loops Review

9th - 12th Grade

19 Qs

Loops in Python

Loops in Python

Assessment

Quiz

Computers

7th - 11th Grade

Hard

Created by

Thomas Martinez

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the word used to describe repetition in programming?
Sequence
Selection
Iteration
Coding

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What are the two main types of loops that we have learned about in Python?
IF Function & Variables
FOR and WHILE Loops
Forever and Fixed Loop
Data Types and Numbers

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What type of loop is used when you know how many times you want to repeat something?
A WHILE Loop
An IF function
A FOR Loop
A Variable

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What type of loop is used when you DO NOT know how many times you want to repeat something?
A WHILE Loop
A Counter
A FOR Loop
A Forever Loop

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would amount equal in this piece of code:

amount = 2 + 5 * 2
12
9
14
5

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would be the value of ‘marks’ after running this code:
 
marks = 20
total = 5 
newmarks = marks * 3
60
45
100
75

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is printed when this program is run:
days = 5 
if days > 6:  
   print(“Month”)

else:  
   print(“Week”)
Month
Week
Day
4

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?