Consider the following method:
public void calculatePower(double base, int exponent) {
double result = Math.pow(base, exponent);
printPower(base, exponent, result);
}
public void printPower(double base, int exponent, double result) {
System.out.print(base + "^" + exponent + " = " + result);
}
Assume that the method calculatePower(2, 3) appears in a method in the same class. What is printed as a result of the method call?