Edit Game
Python Collections Review
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   16  Close
Dictionaries are a lot like...
objects
Dictionaries store data as...
key-value pairs
Which function will get the length of a list?
len
Which function will add an item to the end of a list?
append
What type of algorithm is Merge Sort?
Divide & Conquer
Which is faster, Selection Sort or Quicksort?
Quicksort
What will be the value of the "total" variable?
48
What will be the value of the "bark" variable?
grey-brown
What will be printed?
giraffe
What will be printed?
dory
What will be printed?
0
What will be printed?
5
True or False: It is possible to have a List containing Dictionaries
True
True or False: Dictionaries are stored sequentially (in order)
False
True or False: Lists are stored sequentially (in order)
True
What is the index of the first element in a list?
0