Solved

Fill in the Blank in the Following Code Snippet to Create

Question 86

Multiple Choice

Fill in the blank in the following code snippet to create an object for reading binary data from a disk file, named input.bin?
try (______________________________)
{
Process input
}


A) FileReader in = new FileReader("input.bin") ;
B) FileWriter in = new FileWriter("input.bin") ;
C) PrintWriter in = new PrintWriter("input.bin") ;
D) FileInputStream in = new FileInputStream("input.bin") ;

Correct Answer:

verifed

Verified

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

Related Questions