Can i have abstract class with no abstract methods?
Answer Posted / kamruddin
an abstract class contain the abstract methods and concerete
method
Abstract method:- are those method which have no body.
concrete Method:- are those method which have a body.
| Is This Answer Correct ? | 12 Yes | 3 No |
Post New Answer View All Answers
Explain how can you debug the Java code?
What is a native method in java programming?
What is tree node in java?
What is rule of accessibility in java?
What is a boolean field?
Can memory leak in java?
Can you inherit from an abstract class java?
What is data movement?
extending thread class or implementing runnable interface. Which is better? : Java thread
Which access specifier can be used with class ?
Can a abstract class be declared final?
Can we access the non-final local variable, inside the local inner class?
What are the practical benefits, if any, of importing a specific class rather than an entire package (e.g. Import java.net.* Versus import java.net.socket)?
How do listeners work?
How does callback work in java?