Q. What is the default return value of a function that doesn't have a return statement?
β
Correct Answer: (C)
None
Explanation: In Python, a function that doesn't return anything explicitly returns `None`.