(**** * * Module Help defines the objects related to explaining in detail how to take am in class, take home, * or practice test along with how to view graded tests inside the StudentInterface. * *) module Help; object InClassTestHelp; object TakeHomeTestHelp; object PracticeTestHelp; object ViewingGradedTestHelp; object HelpContents is components: InClassTestHelp and TakeHomeTestHelp and PracticeTestHelp and ViewingGradedTestHelp; description: (* HelpContents is the interface that contains a list of the StudentInterface features explained in more detail as to what they are and how they are to be used when taking a test. This HelpContents interface is meant to give assisstance to the student user should they have any problem understanding a feature of the StudentInteface. *); end HelpContents; end Help;