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

class company implements salary {}



Your comments will be displayed only after manual approval.