package user; import java.util.*; /** * Stubclass of RegisteredUser whose primary role in the system is to attend * and participate in class presentations. Stores additional information about * Students, such as their major, their class standing, and a collection of * questions they have answered. */ class Student extends RegisteredUser { /** * This student's major. */ String major; /** * This student's class standing. */ String classStanding; /** * Collection of questions this student has answered, used for statistics * purposes. */ Collection questions; }