What Will Be The Output Of The Following Java Snippet If #282
What will be the output of the following Java snippet, if attempted to compile and execute?</p> <pre><code class="language-java" line="1"> class abc { public static void main(String args[]) { if(args.length>0) System.out.println(args.length); } } </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs128 Java. It can also be found in gs gs128 Java Classes Methods - Java Command Line Arguments - Quiz No.1.
What will be the output of the following Java snippet, if attempted to compile and execute?
class abc { public static void main(String args[]) { if(args.length>0) System.out.println(args.length); } }
The snippet compiles, runs and prints 0
The snippet compiles, runs and prints 1
The snippet does not compile
The snippet compiles and runs but does not print anything