import java.util.*; public class ExamManager { private QuestionGenerator generator = new QuestionGenerator(); private Set history = new HashSet<>(); private String type; public ExamManager(String type){ this.type = type; } public List generateExam(int numQuestions){ List questions = new ArrayList<>(); for(int i=0;i