What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator

0 Answers  


Explain how a pointer to function can be declared in C++?

0 Answers  


Can I learn c++ without learning c?

0 Answers  


What is abstraction c++?

0 Answers  


Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?

6 Answers   CSC,


Which of the following operator cannot be overloaded?

2 Answers   TCL,


Is c++ high level programming language?

0 Answers  


whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };

5 Answers   Huawei,


What are static and dynamic type checking?

0 Answers  


What is class and structure in c++?

0 Answers  


How do you allocate and deallocate memory in C++?

1 Answers  


What is the difference between shallow copy and deep copy?

1 Answers  


Categories