Related Questions

Which of the following declares an abstract method in an abstract Java class?
public abstract class Shape { private int x; private int y; public abstract void draw(); public void setAnchor(int x, int y) { this.x = x; this.y = y; } } Which two classes use the Shape class correctly?
Which of the following can contain both abstract and non-abstract methods?