Given the following class, what would be the best declaration for a mutator function that allows the user of the class to change the age?

class Wine
{
public:
Wine();
int getAge();
float getCost();
private:
int age;
float cost;
}
a. int getAge(int newAge);
b. Wine();
c. void setAge();
d. void setAge(int newAge);


d. void setAge(int newAge);

Computer Science & Information Technology

You might also like to view...

The following statement __________

``` cin >> *num3; ``` a. stores the keyboard input in the variable num3 b. stores the keyboard input into the pointer num3 c. is illegal in C++ d. stores the keyboard input into the variable pointed to by num3 e. None of these

Computer Science & Information Technology

A folder is a container in which you can store files

Indicate whether the statement is true or false

Computer Science & Information Technology

Case OL 2-2Olivia's boss has asked her to set up a meeting for 10 people in the Yosemite Conference Room using Outlook Calendar.In this instance, the Yosemite Conference room is a(n) ____ for the meeting.

A. Resource B. Attendee C. Host D. Guest

Computer Science & Information Technology

?The CARS checklist does NOT include which of the following type of information?

A. ?reasonable B. ?accurate C. ?committed D. ?credible

Computer Science & Information Technology