Answer:
A. Is there at least one recursive call
Step-by-step 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 .