Answer Posted / nishikant sahu
When i want wrap the properties of more than one class into
a single entity(class) ,then i want to use MI,but strongly
recommend to avoid MI, if this scenario occur then you
design having some problem, and it cast a lots of issue and
overhead.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the difference between strcpy() and strncpy()?
What does ios :: app do in c++?
Does c++ have a hash table?
find the two largest values among the 6 numbers using control structures : do-while,for,if else,nestedif- else ,while. one or two of them.
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.
Is c++ a difficult language?
What is stoi in c++?
Write an algorithm that determines whether or not an almost complete binary tree is a heap.
Explain the difference between static and dynamic binding of functions?
Which software is used for c++ programming?
What is the arrow operator in c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
what are the decision making statements in C++? Explain if statement with an example?
Does there exist any other function which can be used to convert an integer or a float to a string?