Employee alice1 = new Employee("Alice",75200,1998,12,2); Employee alice2 = new Employee("Alice",75200,1998,12,2); public boolean equals(Object otherObject) { if(this == otherObject )return true; if(otherObject == null) return false; if(getClass()!=otherObject.getClass()) return false...