2. Consider the following statements: class temporary \{ public: void set(string, double, double); void print(); double manipulate(); void get(string\&, double8, double\&); void setDescription(string); void setFirst(double); void setSecond(double); string getDescription() const; double getfirst()const; double getSecond()const; temporary ( string ==,, double =0.0, double =0.0); private: string description; double first; double second; 3 ; 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 deseription 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 string getDescription() const; double getFirst()const; double getSecond()const; temporary ( string =", double =0.0, double =0.0); private: string description; double first; double second; \} i: 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? temporary object1