Consider the following class hierarchy:
class Base
{ }
class Derived : public Base
{ }
Which of the following are true?
Correct Answer: The following line of code is valid: Base *object = new Derived();
Explanation:
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
More C++ MCQ Questions