Python List -Plenary Quiz

Python List -Plenary Quiz

9th Grade

8 Qs

quiz-placeholder

Similar activities

Python Data Structures

Python Data Structures

8th - 12th Grade

10 Qs

One-Dimensional Array in Python

One-Dimensional Array in Python

9th - 11th Grade

9 Qs

Python Lists

Python Lists

7th - 11th Grade

9 Qs

214 Vocabulary & Review

214 Vocabulary & Review

9th Grade

11 Qs

Variables & Lists

Variables & Lists

9th - 12th Grade

10 Qs

Unit 9

Unit 9

9th - 12th Grade

10 Qs

Python methods

Python methods

6th - 12th Grade

10 Qs

Python List Practice

Python List Practice

8th - 9th Grade

10 Qs

Python List -Plenary Quiz

Python List -Plenary Quiz

Assessment

Quiz

Computers

9th Grade

Medium

Created by

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