Cho class như sau:java1: public interface Comparable { 2: int compareTo(Object other); 3: }4: class Employee implements Comparable { 5: public int compareTo(Object other) {6: other = otherObj
Giải thích
Chọn đáp án D (Lưu ý: otherObject ở dòng 6 chưa được khai báo.)