explain oops concepts with examples?
Answer Posted / vijay
OOPS Concepts are mainly 4
1.Abstraction
2.Encapsulation
3.Inheritance
4.Polymorphisam
Abstraction:- Hidding non-essential features and showing the
essential features
(or)
Hidding unnecessary data from the users details, is called
abstraction.
Real Time example: TV Remote Button
in that number format and power buttons and other buttons
there just we are seeing the buttons, we don't see the
button circuits .i.e buttons circuits and wirings all are
hidden. so i think its good example.
Encapsulation:
Writing Operations and methods stored in a single
class. This is Called Encapsulation
Real Time Example: Medical Capsuals
i.e one drug is stored in buttom layer and another drug is
stored in Upper layer these two layers are combined in
single capsual.
Inheritance:
The New Class is Existing from Old Class, i.e SubClass is
Existing from Super Class.
Real Time Example:
Father and Son Relationship
Polymorphism:
Sinle Form behaving differently in different
Situations.
Example:-
Person
Person in Home act is husband/son,
in Office acts Employer.
in Public Good Citizen.
| Is This Answer Correct ? | 101 Yes | 10 No |
Post New Answer View All Answers
What do you understand by looping in java? Explain the different types of loops.
What is the difference between inner class and nested class?
How do I run java on windows?
what do you mean by marker interface in java?
Why is string class considered immutable?
Can It is possible to synchronize the constructor of a Java Class?
Is an object null?
Why do we need data structure in java?
In how many ways we can do synchronization in java?
What is substring in java?
How does compareto method work?
What is files manifesting?
How do you change an int to a string?
Difference between error and exception
What are some alternatives to inheritance?