A). args[2] = 2
B). args[2] = 3
C). args[2] = null
D). An exception is thrown at runtime.
An exception is thrown at runtime.
An exception is thrown because in the code String s4 = args[4];, the array index (the fifth element) is out of the bounds. The exception thrown is the ArrayIndexOutOfBoundsException.