public class Yippee { <br /> public static void main(String [] args) { <br /> for(int x = 1; x < args.length; x++) { <br /> System.out.print(args[x] +“ “); <br /> } <br /> } <br /> } <br /> and two separate command line invocations: <br /> java Yippee <br /> java Yippee 1234 <br /> What is the result?() <p> public class Yippee { <br /> public static void main(String [] args) { <br /> for(int x = 1; x < args.length; x++) { <br /> System.out.print(args[x] +“ “); <br /> } <br /> } <br /> } <br /> and two separate command line invocations: <br /> java Yippee <br /> java Yippee 1234&
A、A. No output is produced. 123
B、B. No output is produced. 234
C、C. No output is produced. 1234
D、D. An exception is thrown at runtime. 123
E、E. An exception is thrown at runtime. 234
F、F. An exception is thrown at rijntime. 1234