Ask Question
14 January, 21:24

An iterative algorithm uses a loop to solve the problem, while a recursive algorithm uses a method that calls itself. (true, false)

+2
Answers (1)
  1. 15 January, 00:48
    0
    True.

    Explanation:

    An iterative method uses a loop to solve the problem either it can be for, while or do-while loop. Iterative methods are easy to implement than recursive problem.

    While recursion uses the same method to call itself. Recursive methods are not easy to implement as compared to iterative method. It contains following things:

    base case. Some calculation. Recursive call.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “An iterative algorithm uses a loop to solve the problem, while a recursive algorithm uses a method that calls itself. (true, false) ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers