In the code below, how should the class Dog be derived from the class Animal?

```
class Dog : - ? -
{
private:
string dogtype;
public:
Dog();
void SetDogType(string dt);
};

```

A. class Dog : public Animal
B. class Dog : private Animal
C. class Dog : protected Animal
D. Any of the above.


D. Any of the above.

Computer Science & Information Technology

You might also like to view...

_______ was the name of the first electronic computer and it was located in _______.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

A _____________ is an organized collection of data.

a) row b) database c) primary key d) None of the above.

Computer Science & Information Technology

Which of the following commands can be used to obtain a hash of the original drive and the forensic copy?

a. dd b. netcat c. md5sum d. nc

Computer Science & Information Technology

You can see how many records meet the conditions of the filter by looking at the ________ bar.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology