Q. What is the default return value of a function that does not explicitly return anything?
β
Correct Answer: (B)
None
Explanation: In Python, functions that do not return explicitly return `None` by default.