Which is not a class member based on the above code?

```
class Animal
{
private:
string species;
bool circus;
public:
Animal();
Void SetAnimalType(string s);
};

```

A. Animal
B. string species;
C. void SetAnimalType(string s);
D. Animal( );

A. Animal

Computer Science & Information Technology

You might also like to view...

Emptying the Recycle Bin should be done ________

A) only after you have determined that you no longer need any of the files that you have deleted B) when you need to restore the system back to a previous state C) prior to installing new hardware or software D) when your computer has run out of RAM or ROM space

Computer Science & Information Technology

Addition and subtraction are considered to be ____ operations performed by a computer.

A. input B. comparing C. arithmetic D. output

Computer Science & Information Technology