Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Question 3 : Assume the definition of class foodType shown in Question 2 . Answer the following questions. Fill in the underlines below to complete
Question :
Assume the definition of class foodType shown in Question Answer the following questions.
Fill in the underlines below to complete the definition of the member function set so that private members are set according to the parameters. The values of the int and double instance variables must be nonnegative. Assign if the variables are negative.
Answer:
void foodTypestring s int c double f int su
double cr double p
name s;
if
calories ;
else
calories ;
if
fat ;
else
fat ;
if
sugar ;
else
sugar ;
if
carbohydrate ;
else
carbohydrate ;
if
potassium ;
else
potassium ;
Fill in the underlines below to complete the definition of the member function print that prints the values of the data members.
Answer:
void foodType const
"Name: endl;
"Calories: endl;
"Fat: endl;
"Sugar: endl;
"Carbohydrate: endl;
"potassium: endl;
Fill in the underlines below to complete the definitions of the member functions getName, getCalories, getFat, getSugar, getCarbohydrate, getPotassium to return the values of the instance variable.
Answer:
string foodType const
return ;
int foodType const
return ;
double foodType const
return ;
int foodType const
return ;
double foodType const
return ;
double foodType const
return ;
Fill in the underlines below to complete the definition of the default constructor of the class foodType so that the private member variables are initialized to respectively.
Answer:
foodType
set;
Fill in the underlines below to complete the definition of the constructor with parameters of the class foodType so that the private member variables are initialized according to the parameters. The values of the int and double instance variables must be nonnegative.
Answer:
foodTypestring s int c double f int su
double cr double p
;
Fill in the underlines below to write a C statement that prints the value of the object fruit
Answer:
fruit;
Fill in the underlines below to write a C statement that declares an object myFruit of type foodType, and initializes the member variables of myFruit to "Apple", and respectively.
Answer:
foodType ;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started