Question

Which statement is false?
a) A recursive function is a function that calls itself either directly or indirectly through another function.
b) A recursive function knows how to solve only one or more base cases.
c) The recursion step executes after the original call to the function terminates.
d) In order for the recursion to eventually terminate, each time the function calls itself with a slightly simpler version of the original problem, this sequence of smaller and smaller problems must eventually converge on a base case.

Answer

This answer is hidden. It contains 3 characters.