Python Data Structures

Python Data Structures

Assessment

Flashcard

Computers

10th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

10 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Which of these is the best description of a list in Python? A list is a collection of data that has an order and can be changed, 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 and cannot be changed

Back

A list is a collection of data that has an order and can be changed

2.

FLASHCARD QUESTION

Front

Which of these is the correct code for creating a list of names? Options: nameList = John, Harry, Jesse, John, Harry, Harry; nameList = ("John", "Harry", "Jesse", "John", "Harry", "Harry"); nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]; nameList = [John, Harry, Jesse, John, Harry, Harry]

Back

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

3.

FLASHCARD QUESTION

Front

Which of these pieces of code would return the name "Harry" from the following list? nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"] Options: nameList(), nameList[1], NameList(4), nameList["4"]

Back

nameList[1]

4.

FLASHCARD QUESTION

Front

What would this output? print(users[0][0])

Back

sam

5.

FLASHCARD QUESTION

Front

What would this output? print(users[2][1])

Back

brown

6.

FLASHCARD QUESTION

Front

What would this output? print(users[0][2])

Back

23

7.

FLASHCARD QUESTION

Front

What would this output? print(users1)

Back

sam, smith, 23

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?