Multiple Choice
What is the value of aList after the following code is executed?
AList = [ 1, 2, 3 ]
AList.remove(2)
A) [ 1, 2 ]
B) [ 1, 3 ]
C) [ 3 ]
D) [ 1 ]
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q40: What can a programmer do to prevent
Q41: Which type of collection is ordered by
Q42: In what order are dictionary items visited
Q43: Without abstraction, you would need to consider
Q44: When collections share mutable items, a deep
Q45: Which operator can you use to test
Q47: A collection contains at least one item.
Q48: Which Python function returns the total number
Q49: What is a group of zero or
Q50: Which object type is immutable?<br>A) list<br>B) set<br>C)