what are the oops concept in java explain with real time
examples
Answer Posted / murali krishna thanneeru
We have the following oops concepts like
1.Abtsrction
2.Encapsulation
3.Inheritance
4.Polymorphism
Abstraction:
hiding unnecessary data from the users and making the
application as user friendly then it is called as abstrcation
ex:Any mail account the user is simply filling the form and
he don't know ho it is developed.
Encapsulation:
Wrapping the data and code as a single unit is called as
encapsulation.
ex:Capsule is the best real time example for it.In it we
will have two types of drugs combined as single capsule.
Inheritance :
Acquiring the properties from one class(base class or parent
class)to another class(derived class or child class)is
called as inheritance.
Ex:Inventing laptop from desktop.
Polymorphism:
Single entity behaving in different forms is called as
polymorphism
ex:Mouse is for click the buttons and dragging the bars or
placing the pointer in a particular place.
| Is This Answer Correct ? | 69 Yes | 14 No |
Post New Answer View All Answers
What is object cloning in Java?
If we don’t want some of the fields not to serialize how to do that?
When a byte datatype is used?
What happens when main () method is declared as private?
What does this () mean in java?
what do you understand by synchronization? Or what is synchronization and why is it important? Or describe synchronization in respect to multithreading? Or what is synchronization? : Java thread
What is the base class of all classes?
Can we have multiple classes in single file ?
What does flagged out mean?
How can we make sure main() is the last thread to finish in java program?
What are the different ways to handle exceptions?
What are three types of loops in java?
What is immutable data?
Difference between overriding and overloading in java?
what is the purpose of the wait(), notify(), and notifyall() methods? : Java thread