Ask Question
30 December, 20:40

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

+1
Answers (1)
  1. 31 December, 00:40
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers