Microsoft
98-361 · Question #7
Which term is used to describe a class that inherits functionality from an existing class?
The correct answer is C. Derived class. Classes (but not structs) support the concept of inheritance. A class that derives from another class (the base class) automatically contains all the public, protected, and internal members of the base class except its constructors and destructors.
WAN Optimization Fundamentals and Principles
Question
Which term is used to describe a class that inherits functionality from an existing class?
Options
- ABase class
- BInherited class
- CDerived class
- DSuperclass
How the community answered
(39 responses)- A10% (4)
- B3% (1)
- C85% (33)
- D3% (1)
Explanation
Classes (but not structs) support the concept of inheritance. A class that derives from another class (the base class) automatically contains all the public, protected, and internal members of the base class except its constructors and destructors.
Topics
#derived class#inheritance#OOP#class hierarchy
Community Discussion
No community discussion yet for this question.