Question: public interface Commander{ void doYourTask(); } abstract public class Tom implements Commander { } which of the the statements below is correct? The program will

public interface Commander{ void doYourTask(); } abstract public class Tom implements Commander { } which of the the statements below is correct? The program will not compile since method doYourTask() in interface Commander must be defined as abstract. The code won't compile since class Tom must implement method doYourTask() from interface Commander. The program will not compile since declaration of class Tom uses keyword implements instead of extends. The program will compile without errors
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
