What is the maximum number of interfaces a Java class can implement?

  • 1
  • 2 or more
  • 3 or more
  • Unlimited
A Java class can implement an unlimited number of interfaces. This allows for multiple inheritance of method signatures, where the class must provide implementations for all the methods declared in the interfaces it implements.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *