Which of the following are true? (Choose all that apply)
public class Main { public static void main(String[] args) { Main m = new Main(); } }
A, E.
Main is a class, which can be seen from the declaration: public class Main.
m is a reference to an object.
main() is a method.