Hello,
with LimeSurvey 1.92 (which was released about a week ago) there are many new possibilities using the ExpressionManager to set relevance of a question, validate an answer or even do some micro tailoring.
If you want to show the correct answer immediately you can for example
1. Add your ADHD question
2. Add a new question (question type: Text display) and enter your information/solution text.
3. Use the question relevance to show the text only if the participant has answered the ADHD question (e.g. "Edit current question" -> Insert "!is_empty(ADHD)" into "Relevance" -> "Save")
If you want to do some micro tailoring you can add something like
Code:
{if(!is_empty(ADHD),
if(ADHD.valueNAOK==4,'Your answer is correct! ','Your answer is false! ')
,'')} Attention hyperactivity deficit disorder is correct. ADHD is the most frequent psychological disorder in children and bla bla bla.
telling the participant if he/she chooses the right or wrong answer.
If you want to try it out I'll add a question group to this post so you can create a new survey, import the question group and have a look how it works.