Valid 1Z0-851 Dumps shared by ExamDiscuss.com for Helping Passing 1Z0-851 Exam! ExamDiscuss.com now offer the newest 1Z0-851 exam dumps, the ExamDiscuss.com 1Z0-851 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1Z0-851 dumps with Test Engine here:
What is the result? 11. public class Person { 12. String name = "No name"; 13. public Person(String nm) { name = nm; } 14. } 15. 16. public class Employee extends Person { 17. String empID = "0000"; 18. public Employee(String id) { empID = id; } 19. } 20. 21. public class EmployeeTest { 22. public static void main(String[] args){ 23. Employee e = new Employee("4321"); 24. System.out.println(e.empID); 25. } 26. }
Correct Answer: D
Explanation/Reference: Explanation: Implicit super constructor Person() is undefined. Must explicitly invoke another constructor