What will be printed out if the following code is run with the java Main hello world command?
public class Main{ public static void main(String argv[]) { System.out.println(argv[1]); } }
a
The second command line argument is displayed.