CGI interview question

What is the difference between an interface and an abstract class in Java

Interview Answer

Anonymous

1 Dec 2016

Interface only has method signatures, abstract classes can have method implementations

2