Report Bug
Qus : Which of the following statements is false about recursion?
Qusनिम्नलिखित में से कौन सा स्टेट्मेंट रिकर्शन के बारे में गलत है?

A. Every recursive function must have a base case
B. Infinite recursion can occur if the base case isn’t properly mentioned
C. A recursive function makes the code easier to understand
D. Every recursive function must have a return value


Solution
D. Every recursive function must have a return value



Explanation
A recursive function needn’t have a return value.



Report Bug