Q. What does `dict.get('key', 'default')` return if the key is not found?
β
Correct Answer: (C)
'default'
Explanation: `get()` returns the provided default value if the key does not exist.