I think the best way is to have one table with the following fields:
tblQ_A
QuestionID
Question
CorrectAnswer
Then have another table with your responses:
tblResponses
PersonID (foreign key to some other "person" table)
QuestionID (foreign key to tblQ_A)
Answer
Then you can create a query which will provide a list of names of all the testee's (?) that have scored 80% or more.
I know, this doesn't work with your structure, but as you can see, having the design as you do makes it really difficult to "process".
Terry M. Hoey