Suppose I executed the following Java method:
public static void print() {
System.out.print("This is some text");
System.out.println();
}
How many lines of output are printed? What counts as a "line of output"? I would think there are two, but I really don't know.