class Student { private String name; public Student(String n) {name=n;} public void doExercise(IReadWrite x, int answer){x.writeAnswer(answer);} }