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 |
When you overload member functions, in what ways must they differ?
What is name hiding in c++?
When should you use multiple inheritance?
Does c++ have finally?
Is c++ a float?
How is modularity introduced in C++?
Define a program that reads two matrices of size 3x3 with real values from the user then prints their sum, difference and multiplication.
What is c++ stringstream?
What are virtual functions in c++?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
Differentiate between an external iterator and an internal iterator?
Explain about Garbage Collector?