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

1.Another name for member function of a class is_______ 2. Another name for data

ID: 3760886 • Letter: 1

Question

1.Another name for member function of a class is_______ 2. Another name for data member of a class is_____ 3. A/An______function is the mechanism used to generate multiple functions as needed from a generic description of a function. 4. _____ refers to an object of one class being a data member of another class? 5. What C++ library provides off-the-shelf, debugged versions of many common data structures (such as strings, vectors and linked lists) and algorithms (such as sorting) for a programmer's use? 6. what is the name given to a class from which a new class is derived?______ 7. when a member function's body is written inside the class declaration, the function is:_____

Explanation / Answer

1.Another name for member function of a class is methods
2. Another name for data member of a class is attributes
3. A/An overloading function is the mechanism used to generate multiple functions as needed from a generic description of a function.

5. STL libraries provide these functionalities
  
6. what is the name given to a class from which a new class is derived?Base class
7. when a member function's body is written inside the class declaration, the function is:inline