Suppose this is embedded in an otherwise correct and complete program. Which version of f() will be called?

Suppose class D is derived from class B, and class B has a public
member function whose declaration is void f();. Suppose class D has its
version of the function, void f(). Here is a pointer definition and an access to a
member function..
```
B* bPtr = new D;
BPtr->f();
```

a) D::f()
b) B::f()
c) This is illegal. You can’t assign a D object to a variable of type pointer to B.


b) B::f()

Computer Science & Information Technology

You might also like to view...

In MLA format a bibliography is called works cited, is single-spaced, and does not have indented lines

Indicate whether the statement is true or false

Computer Science & Information Technology

The ________ is the visual key to a chart

Fill in the blank(s) with correct word

Computer Science & Information Technology

Examples of ____________________ users are sales reps, real estate agents, insurance agents, meter readers, package delivery people, journalists, consultants, and students.

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

Computer Science & Information Technology

To find the appropriate leaf node, we follow the path from the root, going left when the new data's key is greater than a node's key and right otherwise.

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

Computer Science & Information Technology