question archive public interface Sports { public void setHomeTeam(String name); public void setVisitingTeam(String name); } Create two classes Hockey and football
Subject:Computer SciencePrice:2.87 Bought7
public interface Sports
{
public void setHomeTeam(String name);
public void setVisitingTeam(String name);
}
Create two classes Hockey and football. Both classes must implement the interface Sports.
public interface Shape {
public String LABLE="Shape";
double getArea();
}
Create two classes Rectangle and Circle. Both classes must implement the interface Shape.
Purchased 7 times