Solved

Insert the Missing Code in the Following Code Fragment

Question 68

Multiple Choice

Insert the missing code in the following code fragment.This fragment is intended to read an input file named dataIn.txt and write to an output file named dataOut.txt. Insert the missing code in the following code fragment.This fragment is intended to read an input file named dataIn.txt and write to an output file named dataOut.txt.    A) new File( dataIn.txt )  B) new Scanner(inputFile)  C) new Scanner( dataIn.txt )  D) new File(inputFileName)


A) new File("dataIn.txt")
B) new Scanner(inputFile)
C) new Scanner("dataIn.txt")
D) new File(inputFileName)

Correct Answer:

verifed

Verified

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

Related Questions