Q. Which keyword is used to declare a function that does nothing in Python?
β
Correct Answer: (C)
pass
Explanation: The `pass` statement is a null statement that does nothing. It is often used as a placeholder.