Which is the function header for the Jeopardy constructor located in the Jeopardy.cpp?
```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. Jeopardy::Jeopardy(string h, string g,int s) : TVGame(h,g)
B. Jeopardy(string h, string g, int s) : TVGame(host, game)
C. Jeopardy::Jeopardy(string h, string g, int s)
D. Jeopardy::Jeopardy(string h, int s) : TVGame(h, g);
A
You might also like to view...
Why is it often necessary to scale or shift the values produced by rand?
What will be an ideal response?
In what sense is the insertion sort superior to the merge sort? In what sense is the merge sort superior to the insertion sort?
What will be an ideal response?
Which of the following routing protocol uses a state algorithm?
A. BGP B. RIP C. OSPF D. RIPv2
Data can be inserted into a table or what other database item?
a. Stored procedure b. Function c. View d. Report