InterviewSolution
Saved Bookmarks
| 1. |
Differentiate between new and override modifiers. |
|
Answer» The new MODIFIER is USED to INSTRUCT the compiler to use the new implementation and not the base class FUNCTION. The Override modifier is useful for OVERRIDING a base class function inside the child class. |
|