How many public members does an object of class D have?
```
class B
{
public:
B();
B(int nn);
void f();
void g();
private:
int n;
};
class D: public B
{
public:
D(int nn, double dd);
void h();
private:
double d;
};
```
a) 0
b) 1
c) 2
d) 3
e) 4
f) 5
e) 4
Computer Science & Information Technology
You might also like to view...
In a ________ network, data collisions can occur fairly easily because the network is essentially composed of a single cable
A) Cluster B) Bus C) Star D) Hierarchical
Computer Science & Information Technology
A(n) _______ disk holds a spanned volume
Fill in the blank(s) with correct word
Computer Science & Information Technology