Antra interview question

What is a class What is an interface Basic programming questions

Interview Answer

Anonymous

Aug 28, 2019

All java code is defined in the class. Class includes method and variable. Interface: multiple inheritance cannot be achieved in java, so using interface overcome this issue. An interface can only have method declaration, but no method implementation.