Language Fundamentals

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

and the command line invocation:java Yippee2 a b c
What is the result?
Go to Question: