Static Polymorphism, Static Binding, Compile time Polymorphism, Method Overloading.
Polymorphism is one of the most important OOPS concept. The word "Polymorphism" means, "one name having many forms".
Please note, Polmorphism
is just a concept that...
Home
»
Archives for August 2017
What is Polymorphism in Java with example.
in
Interviews,
Java,
OOPS
- on 06:58:00
- No comments
What is Polymorphism in Java with example.
Polymorphism is one of the most important OOPS concept that means "one name having many forms".
Polymorphism is Greek word which means "Many Forms", If we break the word, we will get,
Polymorphism = (Poly...
Interface example in Java
in
Interviews,
Java,
OOPS
- on 08:19:00
- No comments

Interface example in Java with Program?
Interface is used in a situation,
When you know the contract methods but don't know anything about the implementation.
Your contract implementation can change in future.
You want to achieve dynamic polymorphishm...
When to use Interface in java with example
in
Interviews,
Java,
OOPS
- on 12:59:00
- No comments

When to use Interface in java with example?
Interface is used in a situation,
When you know the contract methods but don't know anything about the implementation.
Your contract implementation can change in future.
You want to achieve dynamic polymorphishm...