You will just need to learn a little bit about expression manager/script.
Here the link to the manual:
www.limesurvey.org/manual/Expression_Manager
Let's say your first question Q1 is single choice. If someone answers Dog, which is Answercode A1 you can show the given response anywhere in the survey (after Q1 of course!!!) with something like this:
This is called micro tailoring. In your case it is pretty simple, because you could pipe in the word "Dog" just like it is.
But you can also create more complicated scenarios. E.g. if you only ask if a person is male or female, but later want to address them with Mr. or Mrs. Then you can use more complicated expressions to check if a person has answered male or female in a question and then adapting the text accordingly, for example like that:
Code:
{if(gender==1;"Mr.";"Mrs.")} {lastname}
(assuming that the gender was asked in a question called "gender" and the answer option "1" stands for male and answer option 2 stands for female and there is no other gender option. This is just an example.
And then you could pipe in the last name of the respondent as well.
Some further links to read through:
www.limesurvey.org/manual/ExpressionScript_How-tos
www.limesurvey.org/manual/ExpressionScript_examples