Q50
What will be the output of the following C++ code? #include using namespace std; class Base public: virtual void print() const = 0; ; class DerivedOne : public Base public: void print() const cout print(); return 0;
A.
DerivedOne
B.
DerivedTwo
C.
Error
AnswerD.
DerivedThree
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board