explain oops concepts with examples?
Answer Posted / nagesh
OOP is Nothing but Object Oriented Programming.
In OOPs concept is implimented in our real life systems.
OOPs have following features
1. Object - Instance of class
2. Class - Blue print of Object
3. encapsulation - Protecting our data
4. polymorphism - Different behaviors at diff. instances
5. abstraction - Hidding our irrelavance data
6. inheritence - one property of object is aquring to
another property of object
7.Message Passing:message passing is possible from one
object to another
8.Robust and Secure: every object is strong one.
every object is secure one with their access specifiers.
| Is This Answer Correct ? | 97 Yes | 37 No |
Post New Answer View All Answers
write a program that list all permutations of ABCDEF in which A appears before B?
What is the java virtual machine?
What is the difference between yielding and sleeping?
What is busy spin, and why should you use it?
what is function overloading in java?
What does it mean that strings are immutable?
Why can't we use static class instead of singleton?
How do you use parseint in java?
Define an enumeration?
What are new features introduced with java 8 ?
How can you make a class serializable in java?
What is a constructor, constructor overloading in java?
What is the static import?
define the terminology association.
What does the “final” keyword mean in front of a variable? A method? A class?