InterviewSolution
| 1. |
Tell Me Something About Abstract Classes? |
|
Answer» An abstract class is a class which does not fully represent an object. INSTEAD, it represents a BROAD range of different classes of objects. However, this representation extends only to the features that those classes of objects have in COMMON. Thus, an abstract class provides only a PARTIAL description of its objects. An abstract class is a class which does not fully represent an object. Instead, it represents a broad range of different classes of objects. However, this representation extends only to the features that those classes of objects have in common. Thus, an abstract class provides only a partial description of its objects. |
|