Quiz day 3 This term refers to an individual item in a list. element bin cubbyhole slot In Python, lists are: mutable data structures static data structures dynamic data structures b and c both This is the last index in a list. 1 0 99 The size of the list minus one When the * operator’s left operand is a list and its right operand is an integer, the operator bec The repetition operator The multiplication operator The initialization operator Nothing—the operator does not support those types of operands. This list method adds an item to the end of an existing list. add insert append add_to Which of the following is not a property of tuples? Tuples are immutable data structures Tuples do not support functions like len, min, max Tuples can not be accessed just like lists Processing tuples is faster than lists Which of the following statements creates a tuple? values = [1, 2, 3, 4] values = {1, 2, 3, 4} values = (1) values = (1,) This ...