What will be the result of the following statements?
```
FileInputStream fstream = new FileInputStream("Input.dat");
DataInputStream inFile = new DataInputStream(fstream);
```
a. The inFile variable will reference an object that is able to read random access data from the Input.dat file.
b. The inFile variable will reference an object that is able to read text data from the Input.dat file.
c. The inFile variable will reference an object that is able to read binary data from the Input.dat file.
d. The inFile variable will reference an object that is able to write binary data to the Input.dat file.
c. The inFile variable will reference an object that is able to read binary data from the Input.dat file.
Computer Science & Information Technology