Consider the method below, which implements the exponentiati…

Consider the method below, which implements the exponentiation operation recursively.  Select the statement that should be used to complete the method so that it handles the special case correctly. public static double power(int base, int exponent) { if (exponent == 0) { _______________ } else { return base * power(base, exponent – 1); } }

Given the following class code: public class RecurseSample {…

Given the following class code: public class RecurseSample { public static void main(String[] args) { recurse(3); } public static int recurse(int n) { int total = 0; if (n == 0) { return 0; } else { total = 3 + recurse(n – 1); } System.out.println(total); return total; } } What values will be printed?