MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program?import java.io.*; public class InputStream_Example { public static void main(String args[]) throws IOException { InputStream obj = new FileInputStream("Interviewmania.com"); System.out.print(obj.available()); } } |
| A. | Compilation Error |
| B. | Runtime Error |
| C. | true |
| D. | false |
| E. | None of these |
| Answer» C. true | |