Declare a class vehicle and make it an abstract data type.
No Answer is Posted For this Question
Be the First to Post Answer
Difference between a homogeneous and a heterogeneous container
What is split a string in c++?
Write a Program for find and replace a character in a string.
Shall we use 'free' to free memory assigned by new, What are the further consequences??
Is overriding possible in c++?
Does c++ have finally?
How is an Abstract Base Class(ABC) related to an "Abstract Data Type" (ADT)
How to create a pure virtual function?
What is null pointer and void pointer?
What is data binding in c++?
Which is the best c++ compiler for beginners?
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4