Home Interview Questions and Answers Core Java Interview Questions and Answers For Freshers and Experience Part-9

core-java49. Why is an Interface be able to extend more than one Interface but a Class can’t extend more than one Class?

Basically Java doesn’t allow multiple inheritance, so a Class is restricted to extend only one Class. But an Interface is a pure abstraction model and doesn’t have inheritance hierarchy like classes(do remember that the base class of all classes is Object). So an Interface is allowed to extend more than one Interface.

50. Can a class be defined inside an Interface?

Yes it’s possible.

51. Can an Interface be defined inside a class?

Yes it’s possible.

52. Can an Interface be final?

Not possible. Doing so so will result in compilation error.

53. What is a Marker Interface?

An Interface which doesn’t have any declaration inside but still enforces a mechanism.

54. Which object oriented Concept is achieved by using overloading and overriding?

Polymorphism.

You may also like

Leave a Comment