Which Python collection is mutable and allows you to change its items after creation?
Which of these code snippets correctly creates a tuple containing the values 4 and 7?
If you create a set with the values {1, 2, 2, 3}, how many unique items will it contain?
Which of the following cannot be used as a key in a Python dictionary?
How do you access the first element of a list named my_list?
What happens if you try to change an item in a tuple after it is created?
Which method is used to add a single element to a Python set?
Which dictionary method is best for retrieving a value by key with a fallback if the key is missing?
Which method removes the first occurrence of a value from a Python list?
Which of the following creates an empty set in Python?
What method can you use to iterate over both the keys and values of a dictionary?
What does [x for x in range(3)] create?
Which set method returns a new set containing all items from both sets without duplicates?
Are Python dictionaries mutable, and what does that mean?
Which collection offers the fastest average-time membership test (e.g., x in collection) for large collections?