Q. What is the default return value of a Python function that does not explicitly return anything?
β
Correct Answer: (C)
None
Explanation: If a function has no return statement, Python automatically returns `None`.