Int Prog: Lists and Functions

Int Prog: Lists and Functions

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

20 questions

Show all answers

1.

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"]

2.

FLASHCARD QUESTION

Front

In the following list, which item has the index number of 3?
["Joe", "Harry", "Jesse", "John", "Harry", "Harry"]

Back

"John"

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

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"]
Options: nameList.append(Felipe), append(nameList,"Felipe"), nameList.append["Felipe",7], nameList.append("Felipe")

Back

nameList.append("Felipe")

5.

FLASHCARD QUESTION

Front

What is the position of the name "Robert" in the following list: 0, 1, 2, 3

Back

2

6.

FLASHCARD QUESTION

Front

What output will this code produce? Options: blue, green, red, error

Back

red

7.

FLASHCARD QUESTION

Front

To insert the string "strawberries" in the first position of a list we use

Back

fruit.insert(0, "strawberries")

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?