πŸ“Š Problem Solving and Python Programming
Q. Which of these is not true about recursion?
  • (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
πŸ’¬ Discuss
βœ… Correct Answer: (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.


Explanation by: Mr. Dubey
recursive calls take up a lot of memory and time as memory is taken up each time the function is called.

πŸ’¬ Discussion

πŸ“Š Question Analytics

πŸ‘οΈ
60
Total Visits
πŸ“½οΈ
3 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
99%
Success Rate