Consider the following method:
public void printSquares(int n) {
for (int i = 1; i <= n; i++) {
System.out.print(i * i + " ");
}
}
Assume that the method printSquares(5) appears in a method in the same class. What is printed as a result of the method call?