Solved

Insert the Missing Code in the Following Code Fragment

Question 55

Multiple Choice

Insert the missing code in the following code fragment. This fragment is intended to read a file and write to a file.
Public static void main(String[] args) throws FileNotFoundException
{
String inputFileName = "dataIn.txt";
String outputFileName = "dataOut.txt";
File inputFile = new File(inputFileName) ;
Scanner in = new Scanner(inputFile) ;
PrintWriter out = _____________;
) . .
}


A) new PrintWriter(outputFileName)
B) new Scanner(outputFileName)
C) new PrintWriter(outputFile)
D) new Scanner(outputFile)

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions