Consider the following method:
public void calculateSquareRoot(double n) {
double squareRoot = Math.sqrt(n);
printSquareRoot(n, squareRoot);
}
public void printSquareRoot(double n, double squareRoot) {
System.out.print("Square root of " + n + " = " + squareRoot);
}
Assume that the method calculateSquareRoot(16) appears in a method in the same class. What is printed as a result of the method call?