Lists in Python

Lists in Python

9th Grade

10 Qs

quiz-placeholder

Similar activities

Lists IN PYTHON!!!!!!!!

Lists IN PYTHON!!!!!!!!

KG - 12th Grade

12 Qs

Python Lists

Python Lists

9th - 12th Grade

15 Qs

Python - Loops & Lists

Python - Loops & Lists

7th - 11th Grade

15 Qs

9.1.5 - Starter Quiz

9.1.5 - Starter Quiz

7th - 11th Grade

14 Qs

Code.org Lists

Code.org Lists

9th - 12th Grade

9 Qs

One-Dimensional Array in Python

One-Dimensional Array in Python

9th - 11th Grade

9 Qs

List Review Quiz

List Review Quiz

9th - 12th Grade

14 Qs

Python Array

Python Array

9th - 12th Grade

8 Qs

Lists in Python

Lists in Python

Assessment

Quiz

Computers

9th Grade

Medium

Created by

Aakifah Rahman

Used 18+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is the best description of a list in Python?

A list is a collection of data that has an order

A list is a lot of variables

A list is used for shopping

A list is a collection of data that cannot hold duplicated data

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these pieces of code would return the name "Harry" from the following list?

nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]

nameList()

nameList[1]

NameList(4)

nameList["4"]

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How do i remove something from a list?

variable.append()

variable.delete()

variable.remove()

variable=(new variable)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

An empty list can be declared as

fruitList = ""

fruitList = ["empty"]

fruitList == []

fruitList = []

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Each item in a list has an "address" . The first address in a Python list is what?

1

0

a

A

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following is the correct way to add the number 4 to mylist?

mylist + 4

mylist.append(4)

mylist.append([4])

4.append(mylist)

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is used to separate elements in a list?

Bracket

Comma

Full Stop

Space

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?