Is there a difference between iteration and recursion?
Is there a difference between iteration and recursion? Correct Answer Yes
Iteration is the method of executing a set of statements repeatedly with the use of looping control structures like the for-loop, while-loop, do-while loop, etc. while recursion does the same thing but without using any looping control structures. It uses function call statements.
মোঃ আরিফুল ইসলাম
Feb 20, 2025