1.

Note:Includes all required header files using namespace std; class Base { public: Base(){} ~Base(){} protected: private: }; class Derived:public Base { public: Derived(){} Derived(){} private: protected: }; int main() { cout << "Executed" << endl; } 12.What is the output of this program?

A. long* string
B. a long st*ring
C. Depends on compiler
D. None of the mentione
Answer» D. None of the mentione


Discussion

No Comment Found

Related MCQs