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?

In what order will the four math functions execute in the fo…

In what order will the four math functions execute in the following expression ? cos(5.1 + sin(2.2 + 3.0 – 1.0) * 6.0) / 4 + log(3.5 + sqrt(27.0)) * 2 For example, your answer for the expression: sin(10.0) + cos(5.0) would be sin 1st, cos 2nd because the sin function will execute before the cos function.