Question 1
A program is launched with the command line `java App one two`. What does args[0] contain inside App's main method?
A. App
Java does not include the class name in args; the program name is not passed as an argument.
B. java
The launcher command java is not part of the argument array; args holds only what follows the class name.
C. oneCorrect answer
args contains only the arguments after the class name, so args[0] is the first of those, "one".
D. two
"two" is the second argument (args[1]); args[0] is the first argument, "one".
Explanation
Unlike C, Java does not pass the program name in the argument array — args holds only the arguments after the class name: args[0] is "one", args[1] is "two".