Does c++ support multilevel and multiple inheritance?
Answers were Sorted based on User's Feedback
Answer / devarathnam
Yes ,c++ supports multilevel and multiple inheritance
| Is This Answer Correct ? | 26 Yes | 5 No |
Answer / praneet sahay
Yes, Cpp upports multilevel and multiple inheritance.
regards,
Praneet sahay
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / bhagavathi chouhan
yes c++ supports these inheritance's
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / raman sharma
yes c++ support multilevel and multiple inheritance
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / priya
Yes c++ supports both multilevel and multiple inheritance
| Is This Answer Correct ? | 4 Yes | 1 No |
What are the benefits of polymorphism?
What is use of overloading?
What is the main difference between C++ and Java
Can we have inheritance without polymorphism?
What are the fields of vtable
1.explicit call for destructor 2.calling function inside a constructor. 3.base *b-new derived delete b; 4.delete p what it will delete. 5.size of base class and derived class int i,in base class and int j in derived. 6.int i-20 int main() { int i =5; printf("%d".::i); { int i =10; printf("%d".::i); } } 7.object slicing 8.new 9.function overloading(return type). 10.class base() { virtuval fun() { ----- } } class derivied:public base() { fun() { ----- } } int main() { derived d; } 11.how static function will call in C++? 12.default structures are in C++? 13.constructors should be in public . 14.virtuval constructor not exist. 15.multilevel inhritence. destructor order.
write a program to print * * * * * *
What is a class and object?
what are the realtime excercises in C++?
what is new operator in c++
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is virtual constructors/destructors?