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