Engineering Full Stack Apps with Java and JavaScript
Given:
public class Employee{ String name; public Employee(){ } }
Which of the following lines creates an Employee instance?
Select 1 option
A. Employee e;
B. Employee e = new Employee();
C. Employee e = Employee.new();
D. Employee e = Employee();