Java OCA OCP Practice Question 1376

Question

Which of these statements about interfaces are true?

Select 3 options

  • A. Interfaces permit multiple implementation inheritance.
  • B. An interface can extend from multiple interfaces.
  • C. Members of an interface are never static.
  • D. Members of an interface may be static.
  • E. Interfaces cannot be final.


Correct Options are  : B D E

Note

An interface can extend any number of other interfaces and can be extended by any number of other interfaces.

Variables in interfaces are always static and method prototypes in interfaces can never be static.




PreviousNext

Related