Asana: https://app.asana.com/0/1202285749308316/1203959158372682/f
At SBC: This quiz https://rock.scottsdalebible.com/page/1091?SurveyId=27&ExpandedIds=C518%2CC519, built in the Survey plugin, shows a results screen after you take the quiz. The results are not rounded off.
{% assign correctAnswers = Result.Survey.AnswerData | FromJSON %}
<h4>Thank you for taking this quiz. Here are the results:</h4>
{% assign passed = Result.DidPass | AsBoolean %}
{% if passed %}
<div class="alert alert-success"><h6>You passed!You got a {{ Result.TestResult }}%.</h6></div>
{% else %}
<div class="alert alert-danger"><h6>You did not pass, you got a {{ Result.TestResult }}% and you needed to get a {{ Result.Survey.PassingGrade }}% to pass.</h6></div>
{% endif %}