As you ask in the question and comments below, something in plain HTML, which simply shows the correct answer, and the reason.
I developed a script that is based only on the HTML structure of the questions, without setting parameters, etc ...
See below:
HTML:
<div class="pergunta"><span>Pergunta 1?</span>
<div>Resposta 1</div>
<div>Resposta 2
<span>A resposta correta é a 2 por que este span esta dentro dela!</span>
</div>
<div>Resposta 3</div>
<div>Resposta 4</div>
</div>
<div class="pergunta"><span>Pergunta 2?</span>
<div>Resposta 1</div>
<div>Resposta 2</div>
<div>Resposta 3</div>
<div>Resposta 4
<span>A resposta correta é a 4 por que este span esta dentro dela!</span>
</div>
</div>
jquery:
$('.pergunta div').click(function () {
if ($(this).find('span').length) {
$(this).addClass('correta').children('span').prepend(' Correto!!! ').show();
} else {
$(this).append(' Resposta errada...').addClass('errada');
$(this).siblings('div').has('span').addClass('correta').children('span').show();
}
});
See working in JSFiddle