Given the following class, which of the following calls print out how are you?
public class Main { public static void main(String[] name) { System.out.println(name[1]); } }
B.
In Java arrays start counting from 0 and strings with spaces must be in quotes.
Options E and F are incorrect since they add .
to the
class name command Main.class
.