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
-3) given class we can implement multiple interfaces
Is true
Only one option is true
- 1) is false we can create only interface reference variable
2) we cannot extend multiple classes
4) no behavior should be in abstract method
