An abstract class in Java can have both ________ and non-abstract methods.

  • Both Abstract and Static Methods
  • Non-Static Methods
  • Only Abstract Methods
  • Only Static Methods
An abstract class in Java can have both abstract (unimplemented) and non-abstract (implemented) methods. Abstract methods are declared using the 'abstract' keyword and are meant to be implemented by concrete subclasses, while non-abstract methods provide default implementations that can be inherited by subclasses or overridden.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *