Engineering Full Stack Apps with Java and JavaScript
Consider the following program:
public class TestClass{ public static void main(String[] args){ String tom = args[0]; String dick = args[1]; String harry = args[2]; } }
What will the value of 'harry' if the program is run from the command line:
java TestClass 111 222 333
Select 1 option
A. 111
B. 222
C. 333
D. It will throw an ArrayIndexOutOfBoundsException
E. None of the above.