Home » JAVA Programming » Inheritance » Question
  1. Which of the following is used for implementing inheritance through an interface?
    1. extends
    2. inherited
    3. implements
    4. using
    5. None of these
Correct Option: C

Interface is implemented using implements keyword. A concrete class must implement all the methods of an interface, else it must be declared abstract.



Your comments will be displayed only after manual approval.