We have the following class:

class Banana

{

private:

string s;

int y;

public:

bool theMemberFunc (string);

void setterForS(string); // setter for s

string getterForS(); // getter for s

};

Instantiate a static object of Banana named co.

a)int Banana;

b)co.Banana = new;

c)Banana = new class;

d)Banana co;