MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? class c { public void main( String[] args ) { System.out.println( "Hello" + args[0] ); } } |
| A. | Hello c |
| B. | Hello |
| C. | Hello world |
| D. | Runtime Error |
| Answer» E. | |