181k views
2 votes
All algorithms that can be implemented recursively can also be implemented interatively True False

User Vrinda
by
8.8k points

1 Answer

0 votes

Step-by-step explanation:

true.

as the recursive nature is just a special form of loop.

also in the recursive way you run through a specific set of instructions over and over while updating and changing some result and control variables or switches.

and finally you have an exit criteria to end the loop (or the recursive calls).

User Graycrow
by
9.1k points