suppose we have an interface & that interface contains five
methods. if a class implements that interface then we have
to bound that to give tha definition of all five methods in
that class. If we declare that class as abstract then can
we call only two methods to give the deinition of that
method & i don't want to give the definition of all the
methods? can it possible
Answer Posted / sai hegde
It's possible that your abstract class implements one/all or
none of the interface methods. The concrete class that
extends your abstract class will have to provide
implementations for the methods that have not been
implemented in your abstract class.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
How to sort an array in java without using sort method?
What is the use of inner class?
What happens if main method is not static?
What is meant by method?
How do you add spaces in java?
Is namespace same as package in java?
What is mvc in java?
Does list maintain insertion order java?
Explain the scope of a variable.
What are untrusted applets?
What is the similarity between dynamic binding and linking?
What is the difference between a vector & an array list?
How can we break singleton in java?
What is functional interface in java?
What are the two environment variables that must be set in order to run any java programs?