Given the following statement, which statement will write the string calbin to the file PrintWriter diskOut = new PrintWriter?
a) diskOut.print(calbin);
b) diskOut.write(calbin);
c) diskOut.append(calbin);
d) diskOut.println(calbin);