For C++ Fill in the blanks. In C++ _____ variables are declared using the qualif
ID: 665305 • Letter: F
Question
For C++
Fill in the blanks.
In C++ _____ variables are declared using the qualifier static.
The purpose of a ____ is to deallocate memory to class instances.
Class or Variable ______ serve as a mode lfor a family of classes or variables in functions' definitions.
The variable scope ______ means that the names of the data attributes and function memebers are local to the scope of their class.
_______ means that the function's action is is determined by the object using it.
The purpose of the constructor is to allocate _____ to class instances.
Unlike a method, which is always a member of a _____ a function is a non-class procedure.
The scope _____ allows subclasses to access private variables of their parent classes.
Explanation / Answer
1) global variables...so they can be acceseed using ::operator
2)The purpose of a delete is to deallocate memory to class instances.
3) Class or Variable visibility serve as a mode lfor a family of classes or variables in functions' definitions
4) The variable scope private means that the names of the data attributes and function memebers are local to the scope of their class.
5)Function object means that the function's action is is determined by the object using it.
6) The purpose of the constructor is to allocate values to class instances.
7)Unlike a method, which is always a member of a class a function is a non-class procedure.
8) The scope private allows subclasses to access private variables of their parent classes.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.