Which of the following statements about recursion are true? Select all that apply. A method is recursive if it calls itself. The recursive case is the simplest form of a problem. Without a base case, a recursive method will call itself only once and stop. A recursive method can have only one base case. Every recursive method must return a value. Every recursive call reduces the original problem, bringing it increasingly closer to the base case.