Difference between abstract class and Interfaces?
Answer Posted / loganathan s
abstract is a class and its fulfilling while the subclass
is extends the abstract class methods.
where as interface also a class it declare a methods.we
must override all the methods at implements the interface.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of the main method?
What is the purpose of garbage collection in java, and when is it used?
Can we create constructor in abstract class ?
What is a top level class in java?
What does java final mean?
What is the difference between an array and an array list?
Can you access non static variable in static context?
Can we override tostring method in java?
Enlist diffrent types of inheritance supported by java?
Can I import same package/class twice?
Can a static class implement an interface?
What is the best way to findout the time/memory consuming process?
Why does java have different data types for integers and floating-point values?
Explain the transient field modifier?
Implement two stacks using a single array.