0
/ 50
For the question below assume the following implementation of the Employee class
public static class Employee{ public int ID; public int...For the question below assume the following implementation of the Employee class
public static class Employee{
    public int ID;
    public int getID() {
        return ID;
    }
    public int getTimesCalled(){
        return timesCalled;
    }
    public void setID(int employeeID) {
        this.ID = employeeID;
    }
}// End Employee
The following code will be executed before the code you'll write. You will be able to reference e1 and e2 as variables in your code.
Employee e1 = new Employee();
Employee e2 = new Employee();
e1.setID(123);
e2.setID(456);
e1 = e2;
For this question, assign the variable e1 to an employee object with an Id of 555 without changing the value referenced by e2.
Your feedback will appear here when you check your answer.