
Understanding Lists in Python
Authored by John Heatley
Information Technology (IT)
7th Grade
Used 1+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
20 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following is the correct way to create a list of fruits in Python?
fruits = "apple", "banana", "cherry"
fruits = ["apple", "banana", "cherry"]
fruits = {"apple", "banana", "cherry"}
fruits = ("apple", "banana", "cherry")
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you access the first element of the list `numbers = [10, 20, 30, 40]`?
numbers[1]
numbers[0]
numbers(0)
numbers.first()
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code? ```python colours = ["red", "blue", "green"] print(colours[2]) ```
"red"
"blue"
"green"
"colours"
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the following creates an empty list in Python?
empty = ()
empty = []
empty = {}
empty = ""
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Given the list `animals = ["cat", "dog", "rabbit"]`, what does `animals[1]` return?
"cat"
"dog"
"rabbit"
1
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the index of "banana" in the list `fruits = ["apple", "banana", "cherry"]`?
0
1
2
3
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you access the last element of the list `numbers = [5, 10, 15, 20]` using a negative index?
numbers[-1]
numbers[-2]
numbers[3]
numbers[4]
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
Already have an account?