Java - Command Line Arguments
What will be the output of the following Java program if run with command line arguments:
java Test Hello World?
public class Test {
public static void main(String[] args) {
System.out.println(args[0] + " " + args[1]);
}
}