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;
}
}
give a explanation about this code?

Submitted by: Devi
Read Online Sun Certification Job Interview Questions And Answers