Lists in Python

Lists in Python

6th - 8th Grade

6 Qs

quiz-placeholder

Similar activities

Level Two Quiz

Level Two Quiz

6th - 8th Grade

10 Qs

Introduction to Computer Science Concepts

Introduction to Computer Science Concepts

6th Grade - University

10 Qs

Unit 5

Unit 5

8th Grade

10 Qs

Programming

Programming

7th Grade

10 Qs

Python Basics Quiz for Grade 8

Python Basics Quiz for Grade 8

8th Grade

10 Qs

Express Course (v2024) Quiz 3

Express Course (v2024) Quiz 3

6th - 8th Grade

10 Qs

Spike Prime Robotics Review #3

Spike Prime Robotics Review #3

8th Grade

10 Qs

Computer Science FFF QUIZ

Computer Science FFF QUIZ

6th Grade

10 Qs

Lists in Python

Lists in Python

Assessment

Quiz

Information Technology (IT)

6th - 8th Grade

Medium

Created by

Fatmah Alkhzaimi

Used 7+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you create a list in Python?

  • list = {1, 2, 3}

list = [1, 2, 3]

list = (1, 2, 3)

list = "1, 2, 3"

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What will the following code print?

apple

banana

cherry

Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of the following code?

10

20

30

40

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You can change the value of an item in a list after creating it.

True

False

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What do we use to separate items in a list

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

names = ["Nouf", "Hamda", "Mariam", "Latifa"]

What index is the list value "Mariam" located?

0

1

2

3