This part looks good. You have a one to many relationship between Question and Answer.
If you need different questions for different forms, you might need something like:
Form
---------
ID
Name
FormQuestion
------------------
ID
Form_ID
QuestionNumber
QuestionText
QuestionAnswer
------------------------
ID
Question_ID
AnswerText
...and possibly (if you need to know it)
WhoAnswered
WhenAnswered
What you have looks good, and you can expand on it as your requirements dictate.
Best Regards
-Greg