|
Related Questions |
View Answer |
|
What is an accessor?
|
View Answer
|
|
What is a mutable member?
|
View Answer
|
|
Explain the ISA and HASA class relationships. How would you implement each in a class design?
|
View Answer
|
|
When should you use multiple inheritance?
|
View Answer
|
|
What do you mean by inheritance?
|
View Answer
|
|
Does c++ support multilevel and multiple inheritance?
|
View Answer
|
|
What are the advantages of inheritance?
|
View Answer
|
|
Virtual constructor: Constructors cannot be virtual. Declaring a constructor as a virtual function is a syntax error. Does c++ support multilevel and multiple inheritance?
|
View Answer
|
|
Can we include music/song in background while running a program like a game in c++ ?
|
View Answer
|
|
What does inheritance means in C++? What are the different forms of inheritance? Give an example for each.
|
View Answer
|
|
what are the advantages and disadvantages of inheritance?
|
View Answer
|
|
Why Call by reference technique is used in case of Copy constructor & not call by value?
|
View Answer
|
|
What is the difference between composition and inheritance?
|
View Answer
|
|
What Is The Use of VirtualDestructer?
|
View Answer
|
|
Is there any way to write a class such that no class can be inherited from it. Please include code
|
View Answer
|
|
What do you mean by inheritance?
|
View Answer
|
|
class A() { };
int main() { A a; }
Whether there will be a default constructor provided by the compiler in above case ?
|
View Answer
|
|
what is the use of volatile keyword? Give me one example?
|
View Answer
|
|
it possible to inherit the private member in drived class?
|
View Answer
|
|
Can you prevent your class from being inherited and becoming a base class for some other classes?
|
View Answer
|