Which of the following signatures are valid for the main()
method entry point of an application? (Choose all that apply.)
main()
B, D.
All the choices are valid method signatures.
However, in order to be the entry point of an application, a main()
method must be public, static, and void; it must take a single argument of type String[].