Python PRIMM L5

Python PRIMM L5

6th Grade

6 Qs

quiz-placeholder

Similar activities

Język Programowania Python

Język Programowania Python

1st - 12th Grade

10 Qs

Bài tập trắc nghiệm C++

Bài tập trắc nghiệm C++

3rd - 12th Grade

10 Qs

Quiz Sesi Kedua

Quiz Sesi Kedua

1st - 12th Grade

10 Qs

TIK 2 KELAS 6 SDN MEGALUH

TIK 2 KELAS 6 SDN MEGALUH

6th Grade

10 Qs

Google Sheets Quiz

Google Sheets Quiz

6th - 8th Grade

10 Qs

Сказимабза

Сказимабза

6th Grade

10 Qs

Python Quiz

Python Quiz

6th - 8th Grade

9 Qs

Spreadsheet Basics

Spreadsheet Basics

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`