Posts

Showing posts with the label Dictionary Quiz

Dictionary Quiz

  Python Dictionary Quiz 🧠 Python Dictionary Data Type – Quiz 1. What is a dictionary in Python? A collection of ordered items A collection of key-value pairs A collection of unique values only 2. Which symbol is used to create a dictionary? [ ] { } ( ) 3. Keys in a Python dictionary must be: Mutable Immutable Duplicated 4. How to access value of key “name” from dictionary d? d.name d[name] d["name"] 5. Which method removes a specific key from a dictionary? remove() discard() pop() 6. Which method returns all keys of a dictionary? get() keys() values() 7. What is the output of len({"a":1, "b":2, "c":3}) ? 3 6 Error 8. Which method is used to co...