

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program, Command line execution is done as – “java Output This is a command Line”? class Output { public static void main(String args[]) { System.out.print("args"); } } |
A. | This |
B. | java Output This is a command Line |
C. | This is a command Line |
D. | Compilation Error |
Answer» D. Compilation Error | |