Multiple choice

OpenFileInput()method returns

  1. InputStream

  2. InputStreamReader

  3. FileInputstream

  4. StreamReader

Reveal answer Fill a bubble to check yourself
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.