What Will Be The Output Of The Following Java Snippet If #285
What will be the output of the following Java snippet, if compiled and executed with command line "hello there"?</p> <pre><code class="language-java" line="1"> public class abc { String[] xyz; public static void main(String argv[]) { xyz=argv; } public void runMethod() { System.out.println(argv[1]); } } </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 compiled and executed with command line "hello there"?
public class abc { String[] xyz; public static void main(String argv[]) { xyz=argv; } public void runMethod() { System.out.println(argv[1]); } }
Compile time error
Output would be "hello"
Output would be "there"
Output would be "hello there"