Which of the following is the result of the following Java code?
class TestApp {
String args[] = { "1", "2" };
public static void main(String args[]) {
if (args.length > 0)
System.out.println(args.length);
}
}
Pick ONE option
Answers
Answered by
0
Answer:
public static void main (string args)
Similar questions