For Loops

For Loops

Assessment

Interactive Video

Information Technology (IT)

7th Grade

Hard

Created by

John Streety

Used 8+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does a basic for loop do when you use 'range(5)'?

Prints a statement five times

Counts from 1 to 5

Counts from 1 to 6

Prints a statement six times

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you use 'range(2, 100, 2)' in a for loop, what will it do?

Count from 2 to 101 by twos

Count from 2 to 99 by twos

Count from 2 to 98 by twos

Count from 2 to 100 by twos

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How does a for loop behave when using 'range(100, -2, -2)'?

Counts down from 100 to -2

Counts up from 100 to -2

Counts up from 100 to 0

Counts down from 100 to 0

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of using a list in a for loop?

To print numbers

To iterate over and print each element in the list

To add elements to the list

To count the number of elements

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens when you print elements of a list with a message in a for loop?

The message is printed once

Each element is printed with the message

Only the first element is printed

The list is printed as a whole