A

Admin • 828.03K Points
Coach

Q. What will be the output of the program?
and the command-line invocation is C:Java> java Test 1 2 3 4

Code:
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);
}
}
  • (A) args[2] = 2
  • (B) args[2] = 3
  • (C) args[2] = null
  • (D) An exception is thrown at runtime.
  • Correct Answer - Option(D)
  • Views: 10
  • Filed under category Java
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.