Abstract class V/S Interface

Abstract Class Abstract classes are classes that cannot be instantiated and are partially implemented or not implemented. Members that are implemented can still be overridden in the implementation class. A class can only inherit only one abstract class... 

Continue reading »