Any class that implements an interface inherits the __________ it defines and can use them as if they were defined directly in the class itself. (1 Mark) abstract methods constants none of the above objects code example
Example: abstract class in java
public abstract class GraphicObject {
abstract void draw();
}