True or False - a main method must have the method name "main"

True - the method signature must be exactly what is seen above.
  • False - you could call this method whatever you wanted as long as it was public and static.
  • False - as long as it is prefixed with the word main, it is good. So mainMethod or mainRunner are also fine.