Multiple Choice
Insert the missing code in the following code fragment. This fragment is intended to write an output file named dataOut.txt that resides in a folder named reports on the C: drive of a Windows system.
Public static void main(String[] args) throws IOException
{
PrintWriter outputFile = _______;
) . .
}
A) new PrintWriter("c:/reports/dataOut.txt")
B) new PrintWriter("c://reports//dataOut.txt")
C) new PrintWriter("c:\reports\dataOut.txt")
D) new PrintWriter("c:\\reports\\dataOut.txt")
Correct Answer:

Verified
Correct Answer:
Verified
Q36: Your program must read in an existing
Q55: Consider the following code snippet. Scanner in
Q70: Consider the following code snippet. Scanner in
Q73: Consider the following code snippet: Scanner in
Q82: Which of the following statements about the
Q87: The Java compiler requires that your program
Q90: Consider the following code snippet written in
Q94: Consider the following code snippet:<br>Public double[] readInputFile(String
Q100: Consider the following code snippet:<br>Public static void
Q101: Consider the following code snippet: Scanner in