Select the correct statements.
Answer options
A
Tuple is mutable
B
Set is an unordered collection of unique items
C
Dictionary is an ordered collection of key-value pairs
D
List is mutable
Correct answer: Set is an unordered collection of unique items, List is mutable
Explanation
Tuples are immutable, sets contain unique unordered items, and lists are mutable. The dictionary statement depends on Python version, but in basic primer context dictionaries are usually taught as key-value collections rather than selected here as the intended answer.