Given the following statement, which statement will write the string Calvin to the file PrintWriter diskOut = new PrintWriter
A) diskOut.print("Calvin");
B) diskOut.write("Calvin");
C) diskOut.println("Calvin");
D) diskOut.append("Calvin");