What will the following Java code print?
String text = "Java" + (7 + 8); System.out.println(text);
Java78
Java15
Java758
An error occurs