ITSP interview question

Different between Abstract class and Interface

Interview Answer

Anonymous

Apr 9, 2012

1) abstract class code is reusable ,this is not in the case of interface. 2) in interface all the methods are by default abstract as well as public. 3)we can have concrete methods also in abstract class,this is not valid in interface 4)declared variables in interface by default public,static,final.this is not in the case of abstract class