share This is a shared quiz Anyone with this link can take the quiz. Good luck! Python Dictionaries Quiz 1. What is the correct syntax to create an empty dictionary in Python? {} [] () set() 2. How do you access the value associated with the key 'name' in a dictionary called person? person.get('name') person['name'] person.name person->name 3. What happens if you try to access a key that does not exist using the square bracket notation? Returns None Returns an empty string Raises a KeyError Creates the key with a default value 4. Which method adds or updates a key-value pair in a dictionary? insert() append() add() update() 5. How can you get a list of all keys in a dictionary called data? data.keys() data.values() data.items() data.all()