Solved

Which of the Following Statements Opens a File Named MyFile

Question 21

Multiple Choice

Which of the following statements opens a file named MyFile.txt and allows you to read data from it?


A) Scanner inputFile = new Scanner("MyFile.txt") ;
B) File file = new File("MyFile.txt") ;
Scanner inputFile = new Scanner(file) ;
C) File Scanner = new File("MyFile.txt") ;
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