How many times does the following loop execute the System.out.print("*") statement? for (int i = 1; i <= 3; i++) { for (int j = 1; j <= 4; j++) { System.out.print("*"); } System.out.println(); }