Question: Which code creates a new object from the Employee class?

  1. Employee currentEmployee = Employee.Create();
  2. Employee currentEmployee = new Employee();
  3. Employee currentEmployee;
  4. Employee currentEmployee = Employee.New();

Answer: The correct answer of the above question is Option B:Employee currentEmployee = new Employee();