Python List -Plenary Quiz

Python List -Plenary Quiz

9th Grade

8 Qs

quiz-placeholder

Similar activities

Python II Lesson 2

Python II Lesson 2

5th - 9th Grade

12 Qs

Python Lists

Python Lists

8th - 9th Grade

10 Qs

Python List

Python List

8th - 9th Grade

10 Qs

Javascript Lists Lecture Knowledge Check

Javascript Lists Lecture Knowledge Check

9th - 12th Grade

11 Qs

Code.org: Lists, Loops, and Traversals

Code.org: Lists, Loops, and Traversals

9th - 12th Grade

9 Qs

List-Computer

List-Computer

9th - 11th Grade

8 Qs

Python Intermediate Lesson1

Python Intermediate Lesson1

5th - 9th Grade

9 Qs

Опрацювання списків мовою Python

Опрацювання списків мовою Python

9th Grade

12 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