Q. Which data type is returned by `dict.items()`? (A) List (B) Tuple (C) View (D) Set ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (C) View Explanation: `dict.items()` returns a view object of key-value tuple pairs.