OOP'S advantages of inheritance include:
Answer / karthiga
1)provide a conceptual framework
2)avoid rewriting code
3)facilitating class libraries
4)all of these
| Is This Answer Correct ? | 144 Yes | 19 No |
What is data binding in oops?
who is the founder of c++?
How do you make derived class as an abstract class?
what is the main difference between sizeof() operator in c and c++
what is the function of 'this' operator ?
Can enum be null?
What is encapsulation example?
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }
which feature are not hold visual basic of oop?
Tell me the scenario,Where we can use interfaces or Abstract class.And What is the difference between interfaces and abstract class?
can you give the dynamic polymorphism types?
create a c++ program that will ask 10 numbers and display their sum using array.