PYTHON -- Lists v2

PYTHON -- Lists v2

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

14 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Would the following code work for creating a list? friends = {"Monica", "Ross", "Rachel", "Phoebe", "Joey", "Chandler"}

Back

No

2.

FLASHCARD QUESTION

Front

Which symbols are used to open and close a list? ( ) round brackets AKA parentheses, { } curly brackets, [ ] square brackets, " " double quote marks, < > angle brackets AKA chevrons

Back

[ ] square brackets

3.

FLASHCARD QUESTION

Front

Which line of code is the correct way to create 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]; nameList = (John, Harry, Jesse, John, Harry, Harry)

Back

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

4.

FLASHCARD QUESTION

Front

What's the index value of list item "Robert" in names = ["Bob", "Bobby", "Robert", "Rob"]?

Back

2

5.

FLASHCARD QUESTION

Front

Which list item has the index value of 3? ["John", "Harry", "Jesse", "John", "Harry", "Harry"]

Back

"John"

6.

FLASHCARD QUESTION

Front

Which line of code would insert the string "strawberries" in the first position of the fruit list? Options: fruit("strawberries", 1), fruit("strawberries", 0), fruit(1, "strawberries"), fruit[1:1] = ["strawberries"]

Back

fruit[1:1] = ["strawberries"]

7.

FLASHCARD QUESTION

Front

What data type are the list items shown in the screenshot?

Back

Integers

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?