Which is the function body for the Jeopardy constructor?
```
class TVGame
{
protected:
string host;
string game;
public:
TVGame(string h, string g);
GoToCommercial();
// add the StartGame function here
};
class Jeopardy : public TVGame
{
private:
int score;
public:
Jeopardy(string h, string g, int s);
// add StartGame function here
};
```
A. { s = score; }
B. { g = h; }
C. { h = score; }
D. {score = s;}
D. {score = s;}
You might also like to view...
What is the area on a PivotTable that is used to restrict the data that displays?
A) Source Filter B) Report Filter C) Record Filter D) Field Filter
Which of the following is NOT a reserved word in Java?
A. do B. while C. for D. loop
You can choose to not publish certain pages in the site.
Answer the following statement true (T) or false (F)
The touch screen gesture of ____ means to move two fingers together.?
A. ?stretching B. ?pinching C. ?elongating D. ?swiping