Explain the concept of inheritance in C++.
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Inheritance allows one class (derived class) to acquire the properties and methods of another class (base class). Types: single, multiple, multilevel, hierarchical, hybrid.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Inheritance allows one class (derived class) to acquire the properties and methods of another class (base class). Types: single, multiple, multilevel, hierarchical, hybrid.
| Is This Answer Correct ? | 0 Yes | 0 No |
Inheritance allows one class (derived class) to acquire the properties and methods of another class (base class). Types: single, multiple, multilevel, hierarchical, hybrid.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is it possible to have a recursive inline function in c++?
What is difference between shallow copy and deep copy? Which is default?
Is c++ a high level language?
Explain the concept of copy constructor?
How to construct virtual constructor
6 Answers CIStems Software, Symphony,
Which programming language is best?
let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.
why and when we can declar member fuction as a private in the class?
In which memory a class gets stored(in heap /in stack)? And why??
What is the stack?
is throwing exception from a constructor not a good practice ?
How new/delete differs from malloc()/free?