1.

What would be the output of following snippet, if attempted to compile and execute? class abc { public static void main(String args[]) { if(args.length>0) System.out.println(args.length); } }

A. The snippet compiles, runs and prints 0
B. The snippet compiles, runs and prints 1
C. The snippet does not compile
D. The snippet compiles and runs but does not print anything
Answer» E.


Discussion

No Comment Found