CGI interview question

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

Interview Answer

Anonymous

Dec 1, 2016

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

2