for more functionalities use...
tblTestCategory
===============
TestCatID (autonumber)
TestDesc (text) <-- (PhysicsI, Physics II, Chem, Biology, etc. ... test type)
Notes (memo)
DesignDate
tblQuestionDesign
=================
QuestionDesignID (autonumber)
TestCat_ID (number/ Long)
Question (text)
RevisedDate
tblCorrectAnswer
==============
CorrectAnswerID (autonumber)
QuestionDesign_ID (number/long)
AnswerOptions <-- (each recort to contain 1, 2, 3, 4 or A. B. C, D as required)
CorrectAnswer (text) The designer to enter correct answer (more on this later)
The correct answer(s) to be included by test designer
for auto grading later by comparing the answeres from tblTestAnswer
tblTests
================
TestID (autonumber)
QuestionDesign_ID(number/long)
TestDate
TestNotes
tblTestAnswer The records in this table is generated by code based on
============ tblCorrectAnswer ready for student inputs
TestAnswerID (autonumber)
AnswerSymbol <-- 1, 2, 3, 4 or A. B. C, D
Answer (text)
StudentNote (if prefered)