Consider the following code: Employee emp1 = new Employee();…

Consider the following code: Employee emp1 = new Employee();emp1.setName(“Anna Karenina”);Employee emp2 = new Employee();emp2.setName(“David Copperfield”);emp2 = emp1; Which of the following best describes the contents of the two variables emp1 and emp2 after this code has executed?