Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

____ is a form of software reuse in which new classes absorb the data and behavi

ID: 3865786 • Letter: #

Question

____ is a form of software reuse in which new classes absorb the data and behaviors of existing classes and embellish these classes with new capabilities. A function that is not defined in a class is called a ______. C++ provides for ______, which allows a derived class to inherit from many base classes, even if the base classes are unrelated. When an object of a derived class is instantiated, the base class's ______ is called implicitly or explicitly to do any necessary initialization of the base class data members in the derived class object. when a variable is declared in {}, it has a ____ scope. A variable that maintains its value when the program execution exists the block where the variable was declared is a ________ variable. The capability of a nonmember function having full access to a class's members is called a ______ of the class Friend function is _______, not inherited. Inheritance is an _________ relationship between the base and derived classes Member functions of a derived class can access the ___ and _____ members of the base class.

Explanation / Answer

8.a) inheritence

8.b) member function

8.c) multiple inheritence

8.d) base class's constructor

8 e) local scope

8 f) global

8g) friend class

8h)

8i) IS A

8j) public and protected