Answer:
first: tuple
second: list
third: dictionary
Step-by-step explanation:
first: tuple
tuples are immutable, so you can't add or remove items from a tuple
second: list
lists are mutable, so you can add and remove items from a list
third: dictionary
dictionaries are mutable, so you can add and remove items from a dictionary