Language Fundamentals

© examsiri.com
Question : 3 of 24
 
Marks: +1, -0
Given
public class Yippee {
  public static void main(String[]args){
    for(int x = 1; x < args.length; x++) {
      System.out.print(args[x] + " ");
    }
  }
}

and two separate command line invocations:
java Yippee
java Yippee 1 2 3 4.
What is the result?
Go to Question: