Which is a condition under which you might want to use recur
Which is a condition under which you might want to use recursion instead of iteration? Select all that apply.
A) The problem you\'re solving can be thought of naturally in a recursive manner.
B) The problem you\'re solving can be thought of naturally in an iterative manner.
C) You think your program will not cause the computer to run out of memory space.
D) There is no clear base case.
There may be multiple answers. Need to select all correct ones.
Solution
Answer: Option: A) The problem you\'re solving can be thought of naturally in a recursive manner.
