Ask Question

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

+3
Answers (1)
  1. 9 February, 05:05
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers