OpenFileInput()method returns
-
InputStream
-
InputStreamReader
-
FileInputstream
-
StreamReader
C
Correct answer
Explanation
The openFileInput() method returns a FileInputStream (note the specific capitalization with lowercase 'stream'), which is used to read bytes from a file stored in the app's internal storage. It does not return the abstract InputStream or character-based Reader classes.