What is DeadlyDiamondDeathProblem ?
Answer / sasmita
In hybrid inheritance the final derived class object will
consists of multiple copies of base class portion.So while
accessing these variables ,we will get an ambiguity ,this
ambiguity is called death of diamond.
| Is This Answer Correct ? | 4 Yes | 0 No |
Write a macro for swapping integers
A file pointer always contains the __________ of the file
We have a scale and 7 balls. 1 ball is heavier than all the rest. How to determine the heaviest ball with only 3 possible weighing attempts?
How to Increment the value of the empid E001 for each and every employee by using the programe?
What is the difference between class and structure?
What is difference between data abstraction and encapsulation?
c++ program to swap the objects of two different classes
What is difference between #define and const?
to remove the repeated numbers from the given . i.e.., if the input is 12233 output should of 123
Why do we use class in oops?
What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile
What is the diamond problem in inheritance?