
Python List -Plenary Quiz

Quiz
•
Computers
•
9th Grade
•
Medium
Tincy Varghese
Used 9+ times
FREE Resource
8 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of these is the correct code for creating a list of names?
nameList = John, Harry, Jesse, John, Harry, Harry
nameList = [John, Harry, Jesse, John, Harry, Harry]
nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
In the following list, which item has the index number of 3?
["John", "Harry", "Jesse", "John", "Harry", "Harry"]
"John"
"Harry"
"Jesse"
3.
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)
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
The list needs one more name added to the end - "Felipe". Which piece of code below would do this?
nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]
nameList.append(Felipe)
append(nameList,"Felipe")
nameList.append("Felipe")
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
To insert an the string "strawberries" in the first position of a list we use
fruit.append("strawberries, 1")
fruit.insert(1, "strawberries")
fruit.insert(0, "strawberries")
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output?
grades=[21, 35, 67, 45, 99, 51]
grades.insert(1,68)
print(grades)
[21, 68,35,67,45, 99, 51]
[21, 35, 45, 67, 99]
[67, 35, 51, 45, 99]
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following list function?
sampleList = [10, 20, 30, 40, 50]
sampleList.append(60)
print(sampleList)
sampleList.append(60)
print(sampleList)
[10, 20, 30, 40, 50, 60]
[10, 20, 30, 40, 50, 60]
[10, 20, 30, 40, 50, 60]
[10, 20, 30, 40, 50, 60, 60]
8.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What does Append() function do in python?
Add the new element at the first position of the list
Add the new element at the last position of the list
Add new element at the middle of the list
Similar Resources on Wayground
11 questions
Python Arrays

Quiz
•
9th - 10th Grade
12 questions
Code.org Unit 6 - Lists

Quiz
•
9th - 12th Grade
10 questions
Python - List

Quiz
•
9th - 12th Grade
10 questions
Assessment Quiz 2

Quiz
•
7th - 12th Grade
9 questions
tulkarm club first comp

Quiz
•
9th - 11th Grade
10 questions
Grafičko sučelje - Tkinter

Quiz
•
7th - 9th Grade
10 questions
python. Коллекции

Quiz
•
7th - 11th Grade
3 questions
Python Lists 2

Quiz
•
9th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Appointment Passes Review

Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
Grammar Review

Quiz
•
6th - 9th Grade