I think what sundialsvcs is telling you has the following structure
Year(YearID, YearName)
Form(FormID, YearID, FormName)
Question(QuestionID, FormID, QuestionNumber, QuestionText)
The above allows more than one form.
Student(StudentID, StudentName)
Response(ResponseID, StudentID, FormID)
Answer(ResponseID, QuestionID, AnswerText)
The above allows more than one response but only one set of answers per response.