Which of these sentences are TRUE in Java Select all that ap
Which of these sentences are TRUE in Java? Select all that apply. You can create an instance of an Interface Given a class, you can extend multiple classes Given a class, you can implement multiple interfaces You can add a default behavior to an Abstract method
Solution
Ans: Give a Class, you can implement multiple interfaces
To declare a class that implements an interface, you include an implements clause in the class declaration. Your class can implement more than one interface, so the implements keyword is followed by a comma-separated list of the interfaces implemented by the class. By convention, the implements clause follows the extends clause, if there is one.
