QUESTION 1- CREATE the enum with LIMITED VALUES, CALCUATED V…
QUESTION 1- CREATE the enum with LIMITED VALUES, CALCUATED VALUES and a FUNCTION FIRST.. Create an “enum” named ANIMAL it will include the following limited values, calculated values and function: 1a. With the following limited values: Ugly, Cute, Pretty ======== 1b. with a CALCULATED value named adoptRate based on the enum value. and the “switch statement” if the value is Ugly- it will be assigned the value of $10 if the value is Cute- it will be assigned the value of $20 if the value is Pretty- it will be assigned the value of $35.50 ======== 1c. with an embedded FUNCTION named FUNC1 that will return a true or false value based on the enum value and the “switch statement” if the value is Pretty – it will return a true value if the value is Ugly or Cute it will return a false value ==================