Object Oriented Programming Using C Plus Plus - Study Mode

[#166] Having more than one function with the same name is called
Correct Answer

(A) overloading

[#167] An object is _____
Correct Answer

(C) an instance of a class

[#168] Two access specifers in C++ are
Correct Answer

(A) public and private

[#169] A data member holds a 1 or 0 depending on whether taxes have been paid. The best identifier for this member is _____
Correct Answer

(B) paidTaxes

[#170] Assume a class Derv that is privately derived from class Base. An object of class Derv located in main() can access
Correct Answer

(A) public members of Base