Question: interface Engineer{ public void SoftwareDeveloper(); } why doesn't this work? We have implemented the following Employee abstract class and SoftwareDeveloper class: abstract class Employee {
interface Engineer{ public void SoftwareDeveloper(); }
why doesn't this work?
We have implemented the following Employee abstract class and SoftwareDeveloper class: abstract class Employee { String employeeId; public String getEmployeeId() { return this.employeeId; class SoftwareDeveloper extends Employee implements Engineer { public String githubUsername; public String getGithubUsername() { return this.githubUsername ; TASK: Write an appropriate Engineer interface. It should only need a single method declaration
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
