Report Bug
Qus : Which of these is not true about recursion?
Qusइनमें से कौन सा रिकर्शन के बारे में सच नहीं है?

A. Making the code look clean
B. A complex task can be broken into sub-problems
C. Recursive calls take up less memory
D. Sequence generation is easier than a nested iteration


Solution
C. Recursive calls take up less memory



Explanation
Recursive calls take up a lot of memory and time as memory is taken up each time the function is called.



Report Bug