Python PRIMM L5

Python PRIMM L5

6th Grade

6 Qs

quiz-placeholder

Similar activities

Banana Tales Part I (1-40)

Banana Tales Part I (1-40)

6th - 8th Grade

10 Qs

Pygame

Pygame

6th - 8th Grade

10 Qs

MS EXCEL

MS EXCEL

5th Grade - Professional Development

10 Qs

PYTHON (FOR LOOP)

PYTHON (FOR LOOP)

1st - 10th Grade

10 Qs

For_python_v1

For_python_v1

1st - 12th Grade

10 Qs

Unit 2 Quiz - Bootstrap: Algebra

Unit 2 Quiz - Bootstrap: Algebra

6th - 12th Grade

11 Qs

Python basics

Python basics

6th - 10th Grade

8 Qs

Random

Random

6th - 8th Grade

10 Qs

Python PRIMM L5

Python PRIMM L5

Assessment

Quiz

Computers

6th Grade

Hard

Created by

Matthew Kelsall

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet? ```python for i in range(3): print(i) ```

`0 1 2`

`1 2 3`

`0 1 2 3`

`1 2`

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? ```python for i in range(1, 5): print(i * 2) ```

`2 4 6 8`

`1 2 3 4`

`2 3 4 5`

`4 6 8 10`

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you iterate over a list of numbers from 0 to 9 using a for loop?

`for i in range(10):`

`for i in range(0, 9):`

`for i in range(1, 10):`

`for i in range(0, 10):`

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet? ```python for i in range(2, 10, 2): print(i) ```

`2 4 6 8`

`2 3 4 5`

`2 4 6 8 10`

`1 3 5 7 9`

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you want to iterate backwards from 5 to 1 using a for loop, which of the following is correct?

`for i in range(5, 0, -1):`

`for i in range(5, 1, -1):`

`for i in range(5, -1, -1):`

`for i in range(5, 0):`

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet? ```python for i in range(0, 5, 2): print(i) ```

`0 1 2 3 4`

`0 2 4`

`1 3 5`

`2 4 6`