Recursion Notes Recursion (EXAMPLES ONLINE) - A recursive method is a method that calls itself - Every recursive method has
two distinctive parts. o A base case or termination condition that causes the method to end. o A non-base case whose actions move the algorithm toward the base case and termination. - The recursion must have a base case or we have infinite recursion, which will or return any result. - IF SOP is after the recursive call, it prints from the parameter to the base case, if SOP is before the recursive call, it prints from the base case to the number parameter.