Examveda
Examveda

What will be the output of the following Java program?
import java.io.*;
class filesinputoutput
{
    public static void main(String args[])
    {
        InputStream obj = new FileInputStream("inputoutput.java");
        System.out.print(obj.available());
    }
}

Note: inputoutput.java is stored in the disk.

A. true

B. false

C. prints number of bytes in file

D. prints number of characters in the file

Answer: Option C


This Question Belongs to Java Program >> Input Output

Join The Discussion

Related Questions on Input Output