Solved

Which of the Following Will Open a File Named MyFile

Question 50

Multiple Choice

Which of the following will open a file named MyFile.txt and allow you to read data from it?


A) File file = new File("MyFile.txt") ;
B) Scanner inputFile = new Scanner("MyFile.txt") ;
C) File file = new File("MyFile.txt") ;
Scanner inputFile = new Scanner(file) ;
D) PrintWriter inputFile = new PrintWriter("MyFile.txt") ;

Correct Answer:

verifed

Verified

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

Related Questions