Multiple Choice
Consider the following code snippet: PrintWriter out = new PrintWriter("output.txt") ;
Which of the following statements about the PrintWriter object is correct?
A) If a file named "output.txt" already exists, an exception will occur.
B) If a file named "output.txt" already exists, data will be added at the end of the file.
C) If a file named "output.txt" already exists, existing data will be deleted before data are added to the file.
D) If a file named "output.txt" already exists, a new file named "output_1.txt" will be created and used.
Correct Answer:

Verified
Correct Answer:
Verified
Q99: The PrintWriter class is an enhancement of
Q100: When a program throws an exception within
Q101: Consider the following code snippet: Scanner in
Q102: Consider the following code snippet. PrintWriter outputFile
Q103: When reading words using a Scanner object's
Q104: Select an expression to complete the program
Q105: Which of the following statements about command
Q106: Consider the following code snippet: public void
Q107: Select an expression to complete the following
Q109: Consider the following code snippet: Scanner in