1  public interface IGradeBook
  2  {
  3     void addScore(int studentId, double score);
  4     double getAverageScore(int studentId);
  5     void save(String filename);
  6     void load(String filename);
  7  }