Assuming the following is the beginning of the constructor definition for class BasePlus-CommissionEmployee which inherits from class Point,

BasePlusCommissionEmployee::BasePlusCommissionEmployee( string first,
string last, string ssn, double sales, double rate, double salary )
: CommissionEmployee( first, last, ssn, sales, rate )
The second line:
a. Invokes the CommissionEmployee constructor with arguments.
b. Causes a compiler error.
c. Is unnecessary because the CommissionEmployee constructor is called automatically.
d. Indicates inheritance.

a. Invokes the CommissionEmployee constructor with arguments.

Computer Science & Information Technology

You might also like to view...

Shortcut menus are displayed by clicking the right mouse button

Indicate whether the statement is true or false

Computer Science & Information Technology

The Autos window allows you to ________.

a) view the contents of the properties used in the previously executed statement b) view the values in the next statement to be executed c) view all properties and values in the application d) view only values from the current statement e) Both a and b.

Computer Science & Information Technology