Given the following class definition: class Rectangle{  priv…

Given the following class definition: class Rectangle{  private:    int width;    int height;  public:    void setWidth(const int w);    void setHeight(const int h);    int getWidth() const;    int getHeight() const;}; Write the complete definition of the member function getHeight that includes the function header and code to implement the function.

Given the following class definition: class Rectangle{  priv…

Given the following class definition: class Rectangle{  private:    double width;    double height;  public:    void setWidth(const double w);    void setHeight(const double h);    double getWidth() const;    double getHeight() const;}; Write the complete definition of the member function setWidth that includes the function header and code to implement the function.

You want to define a C++ class to represent customers for a…

You want to define a C++ class to represent customers for a company. You decide to define three data members to hold the customer ID number (an alphanumeric value),  customer gender (a single letter, i.e. F for female and M for male), and maximum dollar amount that they have ever ordered. What would be the appropriate data types needed to define each of the three instance variables, respectively?

Go to zyBooks by following the zyBooks Table of Contents (Cl…

Go to zyBooks by following the zyBooks Table of Contents (Click to subscribe) link on Course Information (right click on the previous link and open in a new Tab/Window so that you do not leave the quiz). In ZyBooks, complete lab 16.10: Final Exam (Version 1). Enter the following password to enter the zyLab: #5EV3F$Wm Submit in “Submit mode” by clicking “Submit for grading” multiple times as you develop your solution. When you have arrived at your final solution: Submit using “Submit for grading” one more time. You do not need to copy the code here, but you need to make sure you stop working on ZyBooks when your quiz time is done