Single Choice
Not Set
QWhat will be the output of the program?
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
ID: #2207
Array in Java
1,285 views
Question Info
#2207Q ID
Not SetDifficulty
Array in JavaTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
An exception is thrown at runtime.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic