Does c++ support multilevel and multiple inheritance?
Answer Posted / priya
Yes c++ supports both multilevel and multiple inheritance
Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What are the features of oop?
What are the 3 pillars of oop?
What are the 5 oop principles?
Can we create object of abstract class?
What is debug class?what is trace class? What differences are between them? With examples.
Why do we use polymorphism?
Why oops is important?
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
How does polymorphism work?
What is destructor oops?
What is oops in simple words?
write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).
Why is object oriented programming so hard?
why reinterpret cast is considered dangerous?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash