MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? import java.io.*; class files { public static void main(String args[]) { File obj = new File("/java/system"); System.out.print(obj.canWrite()); System.out.print(" " + obj.canRead()); } } |
| A. | True false |
| B. | False true |
| C. | True true |
| D. | False false |
| Answer» E. | |