0 votes
in Python by

Which one of these is NOT true about recursion?

select the correct answer from below options

1) We can replace a recursive function by a non-recursive function

2) The memory space taken by the recursive functions is more than that of non-recursive function

3) Running a recursive function is faster as compared to a non-recursive function

4) The process of recursion makes it easier for users to understand a program

1 Answer

0 votes
by

3) Running a recursive function is faster as compared to a non-recursive function

...