Solved

Insert the Missing Code in the Following Code Fragment

Question 52

Multiple Choice

Insert the missing code in the following code fragment. This fragment is intended to read an input file. public static void main(String[] args) __________________
{
String inputFileName = "dataIn.txt";
File inputFile = new File(inputFileName) ;
Scanner in = new Scanner(inputFile) ;
) . .
}


A) extends FileNotFoundException
B) throws FileNotFoundException
C) inherits FileNotFoundException
D) catches FileNotFoundException

Correct Answer:

verifed

Verified

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

Related Questions