Home » JAVA Programming » Interfaces » Question
  1. Which of the following is the correct way of implementing an interface N by class M?
    1. class M imports N{}
    2. class M extends N{}
    3. class M implements N{}
    4. All of above
    5. None of these
Correct Option: C

Concrete class implements an interface. They can be instantiated.



Your comments will be displayed only after manual approval.