what are three tenets of object orinted Systems?Why they
call like that ?
Please answer me.
Advance thanks.
Answers were Sorted based on User's Feedback
Answer / santosh mundhe
Encapsulation, Polymorphism, and Inheritance these are
three main pillars of oops.
Because by using Encapsulation, Polymorphism, and
Inheritance we can achive data security , code
reuseability......
e.g.
Combining different properties together is known as
encapsulation. Means a class with private and public
properties, by making memberfunction private we can
restrict to access it from out side the class it's nothing
but data security.......
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / santosh mundhe
Encapsulation, Polymorphism, and Inheritance these are
three main pillars of oops.
Because by using Encapsulation, Polymorphism, and
Inheritance we can achive data security , code
reuseability......
e.g.
Combining different properties together is known as
encapsulation. Means a class with private and public
properties, by making memberfunction private we can
restrict to access it from out side the class it's nothing
but data security.......
| Is This Answer Correct ? | 0 Yes | 0 No |
how do u initialize the constant variables
What is Method overloading?
Which is the parameter that is added to every non-static member function when it is called?
What are the benefits of polymorphism?
What do you mean by variable?
What is solid in oops?
i got a backdoor offer in process global,Bangalore..Can i work with it?
How to call a non virtual function in the derived class by using base class pointer
what is the technical or oop name of object?
What are generic functions and generic classes?
Why is abstraction used?
In OverLoading concept,Why they are not consider return value and why they are consider only parameters in method? For ex: public int Add(int a,int b){...} public String Add(int a,int b){...}