Now answer the following questions: a. Give the line number containing the constructor that is executed in each of the following declarations: b. employee tempEmployee; c. employee newEmployee("Harry Miller", 0, 25000); d. employee oldEmployee("Bill Dunbar", 15, 55000); e. Write the definition of the constructor in Line 4 so that the instance variables are initialized to "", 0 , and 0.0, respectively. f. Write the definition of the constructor in Line 5 so that the instance variables are initialized according to the parameters. 9. Write the definition of the constructor in Line 6 so that the instance variable name is initialized to the empty string and the remaining instance variables are initialized Now answer the following questions: a. Give the line number containing the constructor that is executed in each of the following declarations: b. employee tempEmployee; c. employee newEmployee("Harry Miller", 0, 25000); d. employec oldEmployee("Bill Dunbar", 15, 55000); e. Write the definition of the constructor in Line 4 so that the instance variables are initialized to "", 0 , and 0.0, respectively. f. Write the definition of the constructor in Line 5 so that the instance variables are initialized according to the parameters. g. Write the definition of the constructor in Line 6 so that the instance variable name is initialized to the empty string and the remaining instance variables are initialized according to the parameters. 2. Consider the following statements: class temporary \{ public: void set(string, double, double); void print(); double manipulate(); void get(string\&, double\&, double\&); void setDescription(string); void setfirst(double); void setSecond(double); string getDescription() const; double getFirst()const; double getSecond()const; temporary ( string ="n, double =0.0, double =0.0); private: string description; double first; double second; 3i Now answer the following questions: a. Write the definition of the member function set so that the instance variables are set according to the parameters. b. Write the definition of the member function manipulate that returns a decimal number as follows: If the value of description is "rectangle", it returns first * second; if the value of description is "circle", it returns the area of the circle with radius first; if the value of description is "sphere", it returns the volume of the sphere with radius first; if the value of description is "cylinder", it returns the volume of the cylinder with radius first and height second; otherwise, it returns the value 1. c. Write the definition of the function print to print the values of the instance variables and the values returned by the function manipulate. For example, if description = "rectangle", first =8.5, and second =5, it should print: rectangle: length =8.50, width =5.00, area =42.50 d. Write the definition of the constructor so that it initializes the instance variables using the function set. e. Write the definition of the remaining functions to set or retrieve the values of the instance variables. Note that the function get returns the values of all instance variables. 3. What is the output of the following statements? 3. What is the output of the following statements? temporary object1; temporary object2("rectangle", 8.5,5); temporary object3("circle", 6, 0); temporary object4( "cylinder", 6, 3.5); cout