Multiple Choice
After the following series of assignments are performed,
List1 = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
List2 = list(list1)
List2[0][0] = 10
A) list1[0][0] will equal 1, and list2[0][0] will equal 10
B) list1[0][0] will equal 10, and list2[0][0] will equal 1
C) both list1[0][0] and list2[0][0] will equal 10
D) an error will result
E) id(list1) will equal id(list2)
Correct Answer:

Verified
Correct Answer:
Verified
Q29: Give Python code to create a square
Q30: Garbage collection it a process that automatically
Q31: Python provides a list contructor that can
Q32: An object contains a set of _
Q33: The instruction to set the position of
Q35: When one variable is assigned to another,
Q36: For a turtle screen size of 600
Q37: Two objects of the same type store
Q38: The _ is used to access a
Q39: Suppose that list1 and list2 each reference