Ask Question
25 September, 10:42

What question should you keep in mind when debugging a recursive method

A. Is there at least one recursive call

B. did u consider all possible cases

C. All other answers

D. Does the method contain a statement to test an input value and leads to different cases?

+1
Answers (1)
  1. 25 September, 11:18
    0
    A. Is there at least one recursive call

    Explanation:

    While debugging a recursive method we should always check that the method contains atleast one recursive call or not. If the method contains no recursive calls then the method is not a recursive method. Recursive call is most important part of the recursive solution.

    Recursion is when the function call itself in the function.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “What question should you keep in mind when debugging a recursive method A. Is there at least one recursive call B. did u consider all ...” 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