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

Intermediate stream operations are _______________ —they aren’t performed until a terminal operation is invoked.

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

Computer Science & Information Technology

A waiting thread transitions back to the ________ state only when another thread notifies it to continue executing.

a. runnable b. terminated c. new d. blocked

Computer Science & Information Technology

In Access, Short Text is the default data type given to the ID field

Indicate whether the statement is true or false

Computer Science & Information Technology

A(n) _____ is a network device used to allow devices on two separate networks to communicate with one another

Fill in the blank(s) with correct word

Computer Science & Information Technology