Lists in Python

Lists in Python

6th - 8th Grade

6 Qs

quiz-placeholder

Similar activities

Kuis JKI Kelas 8 Pertemuan Ke 2

Kuis JKI Kelas 8 Pertemuan Ke 2

8th Grade - University

10 Qs

Latihan Soal Informatika : Berpikir Komputasional - 2

Latihan Soal Informatika : Berpikir Komputasional - 2

7th Grade - University

10 Qs

Quiz on Basic Python Operators

Quiz on Basic Python Operators

8th Grade

10 Qs

Uji Pemahaman Komputasional

Uji Pemahaman Komputasional

8th Grade

10 Qs

Python (basics)

Python (basics)

1st Grade - University

11 Qs

Tiết 01 & Tiết 02. Tìm hiểu về hệ điều hành

Tiết 01 & Tiết 02. Tìm hiểu về hệ điều hành

6th Grade

11 Qs

ECS U2 Vocab Practice

ECS U2 Vocab Practice

8th Grade

7 Qs

Ch4迴圈-綜合演練選擇題

Ch4迴圈-綜合演練選擇題

6th - 8th 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