Examveda
Examveda

Given the following piece of code:
public interface Guard{
        void doYourJob();
}
abstract public class Dog implements Guard{ }

which of the following statements is correct?

A. This code will not compile, because method doYourJob() in interface Guard must be defined abstract.

B. This code will not compile, because class Dog must implement method doYourJob() from interface Guard.

C. This code will not compile, because in the declaration of class Dog we must use the keyword extends instead of implements.

D. This code will compile without any errors.

Answer: Option D


This Question Belongs to Java Program >> Interfaces And Abstract Classes

Join The Discussion

Comments ( 1 )

  1. Gaurabh Khugshal
    Gaurabh Khugshal :
    6 years ago

    Abstract class needs to declare one abstract method. Here interface method is by default abstract and hence the code compiles.

Related Questions on Interfaces and Abstract Classes

What is an interface in Java?

A. A contract specifying a set of methods that a class must implement

B. A class that cannot be instantiated

C. A class that contains only static methods

D. A subclass of the Object class