MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the order of execution of base class constructors in the following method of inheritance.class a: public b, public c {...}; |
| A. | b(); c(); a(); |
| B. | c(); b(); a(); |
| C. | a(); b(); c(); |
| D. | b(); a(); c(); |
| Answer» B. c(); b(); a(); | |