Exploring Python For Loops

Exploring Python For Loops

Professional Development

11 Qs

quiz-placeholder

Similar activities

Kelas X 28 Spreadsheet 2020

Kelas X 28 Spreadsheet 2020

Professional Development

15 Qs

Level, Range, Gauge, Plumb, Measurements, Loads.

Level, Range, Gauge, Plumb, Measurements, Loads.

Professional Development

12 Qs

Video 2 - Testa os Teus Conhecimentos sobre Airdrops!

Video 2 - Testa os Teus Conhecimentos sobre Airdrops!

Professional Development

7 Qs

Flutter_Q5

Flutter_Q5

Professional Development

10 Qs

G Suite Review

G Suite Review

Professional Development

10 Qs

Flutter Q_0

Flutter Q_0

Professional Development

15 Qs

Module 1 - Introduction to Python

Module 1 - Introduction to Python

Professional Development

12 Qs

Estructuras Selectivas C++

Estructuras Selectivas C++

7th Grade - Professional Development

10 Qs

Exploring Python For Loops

Exploring Python For Loops

Assessment

Quiz

Instructional Technology

Professional Development

Medium

DOK Level 2: Skill/Concept, DOK Level 1: Recall

Standards-aligned

Created by

Devan Miller

Used 1+ times

FREE Resource

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct syntax for a basic for loop in Python?

for i in range(10):

for (i = 0; i < 10; i++):

foreach i in range(10):

loop i in range(10):

Tags

DOK Level 1: Recall

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a correct way to loop through a list named `fruits` in Python?

for fruit in fruits:

for each fruit in fruits:

foreach fruit in fruits:

loop fruit in fruits:

Tags

DOK Level 1: Recall

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the `range(5)` function return in a for loop?

A list of numbers from 1 to 5

A list of numbers from 0 to 5

A list of numbers from 0 to 4

A list of numbers from 1 to 4

Tags

DOK Level 1: Recall

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you iterate over each character in the string `word = "Python"`?

for x in word:

for each x in word:

foreach x in word:

loop x in word:

Tags

DOK Level 1: Recall

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet?

for i in range(3):

print(i)

0 1 2

1 2 3

0 1 2 3

1 2

Tags

DOK Level 2: Skill/Concept

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you have a list `numbers = [10, 20, 30]`, what will the following code print?

for num in numbers:

print(num + 5)

10 20 30

15 25 35

5 15 25

10 15 20

Tags

DOK Level 2: Skill/Concept

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following code?

for i in range(2, 5):

print(i)

2 3 4

2 3 4 5

3 4 5

3 4

Tags

DOK Level 2: Skill/Concept

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?