Q. What will `my_dict = {'a': 1}; 'a' in my_dict` return? (A) False (B) True (C) None (D) KeyError ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) True Explanation: The key `'a'` exists in the dictionary, so it returns `True`.