Which of the following functions can be invoked by an object of class D?
Consider the class inheritance.
```
class B
{
public:
B();
B(int nn);
void f();
void g();
private:
int n;
};
class D: private B
{
public:
D(int nn, float dd);
void h();
private:
double d;
};
```
a) f()
b) g()
c) h()
c) h()
Computer Science & Information Technology
You might also like to view...
A node on the path from the root to node n is a(n) ______ of node n.
a. ancestor b. descendant c. subtree d. leaf
Computer Science & Information Technology
Information systems that interact with customers usually receive low priority.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology