Computer Science, asked by sanjanachakalabbi, 9 months ago

what are the drawbacks of recursive functions(python programming language)​

Answers

Answered by rishavsharma21pd1prg
0

Answer:

  1. Slow.
  2. Logical but difficult to trace and debug.
  3. Requires extra storage space. For every recursive calls separate memory is allocated for the variables.
  4. Recursive functions often throw a Stack Overflow Exception when processing or operations are too large.
Similar questions