Python Loop Practice

Python Loop Practice

9th - 12th Grade

19 Qs

quiz-placeholder

Similar activities

Python while loops

Python while loops

8th - 9th Grade

20 Qs

Unit 3 Review

Unit 3 Review

9th - 12th Grade

18 Qs

Post-Break Python Refresher

Post-Break Python Refresher

9th - 12th Grade

20 Qs

Python -Iteration (loops)

Python -Iteration (loops)

7th - 12th Grade

20 Qs

Python - While loop

Python - While loop

9th - 10th Grade

19 Qs

CSP Python Review 2

CSP Python Review 2

9th - 12th Grade

17 Qs

Python -Iteration (loops)

Python -Iteration (loops)

7th - 12th Grade

20 Qs

For and While Loops in Python

For and While Loops in Python

9th - 12th Grade

16 Qs

Python Loop Practice

Python Loop Practice

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Kirsten Poland

Used 50+ times

FREE Resource

19 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is another way of writing the following code? 
Score = Score + 1 
Score.add(1)
score + 1
Score + Score
Score += 1

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
What will the following lines of code print?
A
B
C
A
C
Nothing, it will return an error.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement will check to see if a is equal to b?
if a == b
if a = b:
if a != b:
if a == b:

4.

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

5.

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

6.

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

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would amount equal in this piece of code:

amount = 2 + 5 * 2
12
9
14
5

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?