InterviewSolution
| 1. |
If A Class Inherits An Interface, What Are The 2 Options Available For That Class? |
|
Answer» Option 1: Provide IMPLEMENTATION for all the members inheirted from the INTERFACE. namespace INTERFACES Option 2: If the class does not wish to provide Implementation for all the members inheirted from the interface, then the class has to be marked as abstract. namespace Interfaces Option 1: Provide Implementation for all the members inheirted from the interface. namespace Interfaces Option 2: If the class does not wish to provide Implementation for all the members inheirted from the interface, then the class has to be marked as abstract. namespace Interfaces |
|