🎴 Flashcard Mode

OOPs VB .Net Quiz

Card1 / 13
Mastered0
Review0
QuestionClick to flip

Inheritance makes it easier to:

AnswerClick to flip back
A
reuse and modify existing modules of code.
💡 Explanation:

Inheritance allows derived classes to reuse code from base classes and extend or modify that code as needed. This promotes code reuse and makes modification easier since changes in the base class automatically propagate. Writing/reading code by sharing method names (option B) is more about polymorphism or naming conventions, while hiding data (option C) is encapsulation, not inheritance.

Change Mode