What are plausible ways of creating an instance of the Employee class?

Employee e = new Employee ();Employee e = new Employee ("Ron");Employee e = new Employee ("Ron", "News");Employee e;

Nice! We create an instance of the class when we call its constructor, which may or may not have parameters.

Oh noes! We create an instance of the class when we call its constructor, which may or may not have parameters.