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


Please Help Members By Posting Answers For Below Questions

What are the features of oop?

827


What are the 3 pillars of oop?

858


What are the 5 oop principles?

831


Can we create object of abstract class?

813


What is debug class?what is trace class? What differences are between them? With examples.

1846


Why do we use polymorphism?

760


Why oops is important?

781


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).

1889


How does polymorphism work?

857


What is destructor oops?

831


What is oops in simple words?

802


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).

1898


Why is object oriented programming so hard?

823


why reinterpret cast is considered dangerous?

2101


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

1966