For Loops in Python

For Loops in Python

9th - 10th Grade

12 Qs

quiz-placeholder

Similar activities

List Review Quiz

List Review Quiz

9th - 12th Grade

14 Qs

Python Array

Python Array

9th - 12th Grade

8 Qs

10.4 Python Lists

10.4 Python Lists

7th - 10th Grade

14 Qs

Python - Loops & Lists

Python - Loops & Lists

7th - 11th Grade

15 Qs

Python Lists

Python Lists

10th Grade

14 Qs

PCS Typing Questions

PCS Typing Questions

9th - 12th Grade

14 Qs

Python List Operations

Python List Operations

10th Grade

10 Qs

Functions in Python

Functions in Python

9th - 12th Grade

16 Qs

For Loops in Python

For Loops in Python

Assessment

Quiz

Computers

9th - 10th Grade

Medium

Created by

D Birch

Used 4+ times

FREE Resource

12 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

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

3.

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

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

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

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

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What letter will be printed on the screen after running this code:

team = “Manchester United”
letter = name[5]
print(letter)
M
d
e
Nothing prints

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the position of the name 'Paula' in the following list:
names = ["Paul","Phillip","Paula","Phillipa"]
0
1
2
3

7.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of these are types of loop (tick all that apply)

While

Do

When

For

If

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?