

MCQOPTIONS
Saved Bookmarks
1. |
What would be the output of following snippet, if attempted to compile and run this code with command line argument “java abc Rakesh Sharma”? public class abc { int a=2000; public static void main(String argv[]) { System.out.println(argv[1]+" :-Please pay Rs."+a); } } |
A. | Compile time error |
B. | Compilation but runtime error |
C. | Compilation and output Rakesh :-Please pay Rs.2000 |
D. | Compilation and output Sharma :-Please pay Rs.2000 |
Answer» B. Compilation but runtime error | |