Under what conditions is multiple inheritance not recommended?
Answer / ackmed
If you derive from more than one base classes with the same
parent, then that parent should be a virtual base class.
| Is This Answer Correct ? | 4 Yes | 0 No |
Differentiate between a constructor and a destructor in c++.
Describe the main characteristics of static functions?
What are single and multiple inheritances in c++?
Why do you use the namespace feature?
How do you differentiate between overloading the prefix and postfix increments?
5. Can inline functions have a recursion?
Define the process of handling in case of destructor failure?
How many ways can a variable be initialized into in C++?
How do I download c++?
Consider a c++ template funtion template<class T> T& Add(T a, T b){return a+b ;} if this function is called as T c = Add("SAM", "SUNG"); what will happen? What is the problem in the template declaration/ How to solve the problem.
What is a container class?
What is the difference between #import and #include in c++?