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

Verified
Correct Answer:
Verified
Q98: Consider the following code snippet, assuming that
Q99: Consider the following code snippet:<br>throw IllegalArgumentException("This operation
Q100: Consider the following code snippet: <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB7392/.jpg"
Q101: The _ method of the Character class
Q102: Consider the following code snippet. <img src="https://d2lvgg3v3hfg70.cloudfront.net/TB7392/.jpg"
Q103: Consider the following code snippet, assuming that
Q105: Insert the missing code in the following
Q106: Which of the following statements about checked
Q107: Which of the following statements about exception
Q108: Consider the following code snippet, assuming in