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: DeviTop Sun Certification Questions
Top Certifications Categories
☺ | CCIE Certification Interview Questions. |
☺ | CCSP Certification Interview Questions. |
☺ | AFMC Interview Questions. |
☺ | Sun Certification Interview Questions. |
☺ | CCDA Certification Interview Questions. |