Multiple Choice Questions
![]() Share with a Friend |
public class Test{
public static void main(String [] args){
String s1 = args[1];
String s2 = args[2];
String s3 = args[3];
String s4 = args[4];
System.out.print(" args[2] = " + s2);
}
}
and the command-line invocation is C:Java> java Test 1 2 3 4
int[] a = {0, 2, 4, 1, 3};
for(int i = 0; i < a.length; i++)
a[i] = a[(a[i] + 3) % a.length];
A). 0
public class Test{
public static void main(String args[]){
add();
add(1);
add(1, 2);
}
// insert code here
}
A). void add(Integer... args){}