assuming there is a simple 1-to-1 relationship between questions and answers, you could use just one table:
CREATE TABLE qa (
qa_id int(11) NOT NULL auto_increment,
question text,
answer text,
PRIMARY KEY (qa_id)
) TYPE=MyISAM;
then create a simple HTML form that asks the questions and a PHP form processor that verifies the answers.