Home »
MCQs »
C# MCQs
What is the C# keyword which is used to change data and behaviour of a base class by replacing a member of the base class with a new derived member?
83. What is the C# keyword which is used to change data and behaviour of a base class by replacing a member of the base class with a new derived member?
- overrides
- protected
- base
- new
Answer: D) new
Explanation:
The C# keyword new is used to change data and behaviour of a base class by replacing a member of the base class with a new derived member.