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...

An alternative approach to get around a problem is called a(n) ________.

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

Computer Science & Information Technology

Virus scanners usually scan incoming emails and other incoming traffic

Indicate whether the statement is true or false.

Computer Science & Information Technology

An ISP is a company that provides Internet service for a fee

Indicate whether the statement is true or false

Computer Science & Information Technology

By default, the Friend List provided by Facebook includes only the friends you initially invited when you created your profile.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology