<?xml version="1.0" encoding="UTF-8"?>
<product>
  <body-html>&lt;script type=&quot;text/javascript&quot;&gt;
    function gradeTest(testForm) {
        var testResult = true;
        var numberRight = 0;
        var elementToScrollTo = '';

        for (var i=1; i &lt;= answers.length; i++) {
            var radioArray = document.getElementsByName('question' + i); 
            for (var j=0; j &lt; radioArray.length; j++) {
                if (radioArray[j].checked) {
                    if (String(radioArray[j].value).toLowerCase() == String(answers[i]).toLowerCase()) {
                        var hintElement = document.getElementById('question' + i + 'Hint');
                        hintElement.style.display = 'none';
                        numberRight++;
                    }

                    if (String(radioArray[j].value).toLowerCase() != String(answers[i]).toLowerCase()) {
                        var hintElement = document.getElementById('question' + i + 'Hint');
                        hintElement.style.display = 'block';

                        if (elementToScrollTo == '') {
                            elementToScrollTo = hintElement;
                        }
                    }
                }
            }
        }

        if (numberRight / answers.length &lt;= .7) {
            testResult = false;
            alert(&quot;You received a &quot; + Math.round(numberRight / answers.length *100) + &quot;% and you need at least a 70% to pass -- you will now be taken back to the test where you can correct your wrong answers.&quot;);
        } else {
            alert(&quot;Congratulations!  You received a &quot; + Math.round(numberRight / answers.length *100) + &quot;% and passed the test -- you will now be taken to your shopping cart where you can finish purchasing your certification.&quot;);
        }

        if (!testResult) {
            var testElement = document.getElementById('certificationTest');
            testElement.style.display = 'block';
            scrollToElement(elementToScrollTo);
        }

        return testResult;
    }

    function scrollToElement(elementToScrollTo) {
        var selectedPosY = 0;

        while (elementToScrollTo != null) {
            selectedPosY += elementToScrollTo.offsetTop;
            elementToScrollTo = elementToScrollTo.offsetParent;
        }

        window.scrollTo(0, selectedPosY);
    }

    function toggleLayer(divID) {
                if (document.getElementById) {
                    var style = document.getElementById(divID).style;
                    style.display = style.display ? &quot;&quot; : &quot;block&quot;;
                } else if (document.all) {
                    var style = document.all[divID].style;
                    style.display = style.display ? &quot;&quot; : &quot;block&quot;;
                } else if (document.layers) {
                    var style = document.layers[divID].style;
                    style.display = style.display ? &quot;&quot; : &quot;block&quot;;
                }

                return false;
    }
var answers = new Array();answers[1] = &quot;T&quot;;answers[2] = &quot;T&quot;;answers[3] = &quot;F&quot;;answers[4] = &quot;F&quot;;answers[5] = &quot;T&quot;;answers[6] = &quot;F&quot;;answers[7] = &quot;F&quot;;answers[8] = &quot;T&quot;;answers[9] = &quot;T&quot;;answers[10] = &quot;T&quot;;answers[11] = &quot;T&quot;;answers[12] = &quot;T&quot;;answers[13] = &quot;T&quot;;answers[14] = &quot;F&quot;;answers[15] = &quot;F&quot;;answers[16] = &quot;T&quot;;answers[17] = &quot;T&quot;;answers[18] = &quot;T&quot;;answers[19] = &quot;F&quot;;answers[20] = &quot;T&quot;;answers[21] = &quot;F&quot;;answers[22] = &quot;T&quot;;answers[23] = &quot;F&quot;;answers[24] = &quot;F&quot;;answers[25] = &quot;T&quot;;answers[26] = &quot;T&quot;;answers[27] = &quot;T&quot;;answers[28] = &quot;F&quot;;answers[29] = &quot;T&quot;;answers[30] = &quot;F&quot;;answers[31] = &quot;F&quot;;answers[32] = &quot;T&quot;;answers[33] = &quot;T&quot;;answers[34] = &quot;T&quot;;answers[35] = &quot;T&quot;;answers[36] = &quot;T&quot;;answers[37] = &quot;F&quot;;answers[38] = &quot;T&quot;;answers[39] = &quot;T&quot;;answers[40] = &quot;F&quot;;answers[41] = &quot;T&quot;;answers[42] = &quot;T&quot;;answers[43] = &quot;T&quot;;answers[44] = &quot;T&quot;;answers[45] = &quot;F&quot;;answers[46] = &quot;F&quot;;answers[47] = &quot;F&quot;;answers[48] = &quot;F&quot;;answers[49] = &quot;T&quot;;answers[50] = &quot;T&quot;;
&lt;/script&gt;
&lt;strong&gt;Don't pay unless you pass!&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;Become a personal trainer and be on the fast track for success with the most user friendly certification tests in the industry.&lt;br /&gt;&lt;br /&gt;&lt;div id=&quot;start&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;toggleLayer('certificationTest'); toggleLayer('grade');&quot;&gt;&lt;span&gt;Start The Test&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div id=&quot;certificationTest&quot;&gt;&lt;div id=&quot;question1Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 1.&lt;/strong&gt;&lt;br /&gt;Anaerobic activity does not utilize oxygen intake for muscular contraction.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;1&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity is activity that utilizes oxygen intake for muscular contraction.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question1&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question1&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question2Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 2.&lt;/strong&gt;&lt;br /&gt;Aerobic activity is activity that utilizes oxygen intake for muscular contraction.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;2&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity is activity that keeps you at or above 60% of target heart rate.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question2&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question2&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question3Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 3.&lt;/strong&gt;&lt;br /&gt;As the heart strengthens, the resting heart rate decreases.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;3&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity increases your resting heart rate.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question3&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question3&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question4Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 4.&lt;/strong&gt;&lt;br /&gt;Aerobic activity should improve all cardiovascular performance.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;4&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity decreases your systolic blood pressure and increases your diastolic blood pressure.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question4&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question4&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question5Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 5.&lt;/strong&gt;&lt;br /&gt;Aerobic activity should improve all cardiovascular performance.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;5&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity reduces cholesterol levels.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question5&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question5&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question6Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 6.&lt;/strong&gt;&lt;br /&gt;Aerobic activity is an endurance activity.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;6&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity increases flexibility, balance, and muscle bulk.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question6&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question6&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question7Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 7.&lt;/strong&gt;&lt;br /&gt;Over-training is detrimental to any type of physical development.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;7&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;To be fit, one should participate in aerobic activity six to seven days per week.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question7&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question7&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question8Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 8.&lt;/strong&gt;&lt;br /&gt;Aerobic activity is an endurance activity.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;8&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;For maximal benefit of time efficiency for muscular response, aerobic activity should last 45 minutes to one hour.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question8&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question8&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question9Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 9.&lt;/strong&gt;&lt;br /&gt;Target heart rate zone and maximal target heart rate are not the same.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;9&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;One should keep in his/her target heart rate zone for at least 30 minutes during aerobic activity.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question9&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question9&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question10Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 10.&lt;/strong&gt;&lt;br /&gt;Aerobic output should be limited during pregnancy.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;10&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Pregnant women should not have a heart rate of over 140 beats per minute.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question10&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question10&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question11Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 11.&lt;/strong&gt;&lt;br /&gt;Pregnant women may exercise moderately through the second trimester.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;11&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;High impact aerobic activity is not advisable for pregnant women after the second trimester.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question11&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question11&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question12Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 12.&lt;/strong&gt;&lt;br /&gt;Holding breath is never advisable during exertion.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;12&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Pregnant women should not hold their breath during aerobic activity.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question12&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question12&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question13Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 13.&lt;/strong&gt;&lt;br /&gt;Holding breath is never advisable during exertion.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;13&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;It is not advised for any person to hold their breath during aerobic activity.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question13&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question13&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question14Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 14.&lt;/strong&gt;&lt;br /&gt;Holding your breath effects all of the cardiovascular system.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;14&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Holding your breath effects your heart rate but not your blood pressure.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question14&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question14&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question15Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 15.&lt;/strong&gt;&lt;br /&gt;Target heart rate = (220-age) * .65 - .85&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;15&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Maximal target heart rate can be found by subtracting your age from 240.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question15&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question15&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question16Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 16.&lt;/strong&gt;&lt;br /&gt;Recovery heart rate should always be taken after an aerobic workout.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;16&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Recovery heart rate should be under 120 bpm in 2 - 5 minutes after an aerobic workout.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question16&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question16&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question17Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 17.&lt;/strong&gt;&lt;br /&gt;Higher steps = more exertion.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;17&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;In step aerobics, the height of the platform should be a reflection of your class' skill level.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question17&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question17&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question18Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 18.&lt;/strong&gt;&lt;br /&gt;Slipping and tendon injuries can be caused by hanging the heels on impact movements.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;18&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;One should not let heels hang off the platform in step aerobics.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question18&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question18&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question19Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 19.&lt;/strong&gt;&lt;br /&gt;Stepping forward off the platform may have adverse effects on the knees.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;19&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Stepping forward off of the platform should be a common movement in aerobics classes.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question19&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question19&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question20Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 20.&lt;/strong&gt;&lt;br /&gt;Adding arm movement increases heart rate.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;20&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Adding arm movements to a step aerobic workout raises the intensity level.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question20&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question20&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question21Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 21.&lt;/strong&gt;&lt;br /&gt;Stepping and running are different exercises.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;21&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;The height of a twelve-inch step represents running nine miles per hour.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question21&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question21&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question22Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 22.&lt;/strong&gt;&lt;br /&gt;Simple sugars are the first fuel source used.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;22&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobics classes should last at least 30 minutes so that fat can be burned as an energy source.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question22&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question22&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question23Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 23.&lt;/strong&gt;&lt;br /&gt;Simple sugars are the first fuel source used.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;23&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Your first energy source burned in protein.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question23&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question23&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question24Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 24.&lt;/strong&gt;&lt;br /&gt;Cool-downs bring the heart rate down safely.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;24&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A cool-down is not necessary for an aerobics class.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question24&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question24&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question25Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 25.&lt;/strong&gt;&lt;br /&gt;Shin splints are muscular tears.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;25&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Shin-splints are caused by a slight tear of the anterior tibialis&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question25&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question25&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question26Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 26.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;26&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Straining Achilles tendons and hyper-extended knees are common step aerobic injures caused by bad form.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question26&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question26&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question27Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 27.&lt;/strong&gt;&lt;br /&gt;Ballistic stretching is not recommended for warm-ups.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;27&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Your step-aerobic warm-up should consist of stretching and slow movements to a set rhythm.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question27&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question27&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question28Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 28.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;28&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;In step-aerobics, your heels should come off the floor during lunges.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question28&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question28&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question29Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 29.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;29&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;You should not pivot while standing on a weight-bearing knee.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question29&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question29&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question30Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 30.&lt;/strong&gt;&lt;br /&gt;Uncoordinated movement may result in injury.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;30&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Legs becoming fatigued and uncoordinated is normal and nothing to worry about.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question30&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question30&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question31Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 31.&lt;/strong&gt;&lt;br /&gt;Aerobics classes should keep participants in the target heart rate zone.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;31&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A rapid heart rate often happens towards the end of an aerobic workout.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question31&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question31&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question32Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 32.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;32&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A V-step is wider than a basic step.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question32&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question32&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question33Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 33.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;33&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;An A-step is wider than a basic step.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question33&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question33&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question34Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 34.&lt;/strong&gt;&lt;br /&gt;Pivoting is essential in turning.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;34&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A turn-step involves a pivot.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question34&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question34&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question35Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 35.&lt;/strong&gt;&lt;br /&gt;A Z-step is not a linear motion.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;35&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A Z-step is a diagonal motion.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question35&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question35&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question36Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 36.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;36&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A X-step should be started by straddling the platform.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question36&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question36&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question37Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 37.&lt;/strong&gt;&lt;br /&gt;Kickbox stances are on the balls of the feet.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;37&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A kickbox stance involves most of the weight on your heels.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question37&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question37&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question38Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 38.&lt;/strong&gt;&lt;br /&gt;Kickboxing is aerobics utilizing the upper and lower body.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;38&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Kickbox aerobics utilizes punches in conjunction with kicks.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question38&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question38&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question39Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 39.&lt;/strong&gt;&lt;br /&gt;A side-kick utilizes a hip pivot.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;39&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A side-kick is thrust from the hip joint.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question39&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question39&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question40Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 40.&lt;/strong&gt;&lt;br /&gt;Kicking movements only involve leg motions.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;40&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Jab, hook, cross, and uppercut are all common kicking movements.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question40&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question40&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question41Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 41.&lt;/strong&gt;&lt;br /&gt;Some punches and kicks have the same name.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;41&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A round-house can be a punch or a kick.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question41&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question41&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question42Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 42.&lt;/strong&gt;&lt;br /&gt;Front = forward.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;42&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A front kick should be performed with the ball of the foot forward.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question42&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question42&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question43Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 43.&lt;/strong&gt;&lt;br /&gt;Back kicks are also known as mule kicks.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;43&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A back kick should be performed with the heel as the striking surface.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question43&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question43&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question44Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 44.&lt;/strong&gt;&lt;br /&gt;Spinning movements require advanced coordination.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;44&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Spinning movements should be avoided except in very advanced classes.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question44&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question44&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question45Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 45.&lt;/strong&gt;&lt;br /&gt;Kick height should be determined by the skill and flexibility of the practitioner.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;45&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A crescent kick should be knee height.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question45&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question45&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question46Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 46.&lt;/strong&gt;&lt;br /&gt;Kickbox aerobics should be used only for an aerobic workout.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;46&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Kickbox aerobics is a valid form of self-defense.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question46&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question46&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question47Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 47.&lt;/strong&gt;&lt;br /&gt;Hyper-extension of any joint in not advised in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;47&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;When kicking, one should extend until locking the knee in place.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question47&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question47&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question48Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 48.&lt;/strong&gt;&lt;br /&gt;High intensity and impact activities are not advised for all levels of fitness.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;48&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Kickbox aerobics is a suitable form of exercise for all ages.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question48&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question48&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question49Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 49.&lt;/strong&gt;&lt;br /&gt;Keeping in the target heart rate zone is essential for development.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;49&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Tracking target heart rate is essential in any type of aerobics class.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question49&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question49&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question50Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 50.&lt;/strong&gt;&lt;br /&gt;Aerobic workouts target cardiovascular health.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;50&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Cardiovascular health can be improved by any form of aerobics.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question50&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question50&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;/div&gt;</body-html>
  <created-at type="datetime">2008-02-02T11:31:44-06:00</created-at>
  <handle>kickbox-step-aerobic-instructor-certification</handle>
  <id type="integer">1414622</id>
  <product-type>Certification</product-type>
  <published-at type="datetime">2008-02-02T21:07:36-06:00</published-at>
  <template-suffix nil="true"></template-suffix>
  <title>Kickbox/Step Aerobic Instructor Certification</title>
  <updated-at type="datetime">2008-12-25T21:05:12-06:00</updated-at>
  <vendor>ASFA</vendor>
  <tags nil="true"></tags>
  <body>&lt;notextile&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
	function gradeTest(testForm) {
		var testResult = true;
		var numberRight = 0;
		var elementToScrollTo = '';
		
		for (var i=1; i &lt;= answers.length; i++) {
			var radioArray = document.getElementsByName('question' + i); 
			for (var j=0; j &lt; radioArray.length; j++) {
				if (radioArray[j].checked) {
					if (String(radioArray[j].value).toLowerCase() == String(answers[i]).toLowerCase()) {
						var hintElement = document.getElementById('question' + i + 'Hint');
						hintElement.style.display = 'none';
						numberRight++;
					}
					
					if (String(radioArray[j].value).toLowerCase() != String(answers[i]).toLowerCase()) {
						var hintElement = document.getElementById('question' + i + 'Hint');
						hintElement.style.display = 'block';
						
						if (elementToScrollTo == '') {
							elementToScrollTo = hintElement;
						}
					}
				}
			}
		}
		
		if (numberRight / answers.length &lt;= .7) {
			testResult = false;
			alert(&quot;You received a &quot; + Math.round(numberRight / answers.length *100) + &quot;% and you need at least a 70% to pass -- you will now be taken back to the test where you can correct your wrong answers.&quot;);
		} else {
			alert(&quot;Congratulations!  You received a &quot; + Math.round(numberRight / answers.length *100) + &quot;% and passed the test -- you will now be taken to your shopping cart where you can finish purchasing your certification.&quot;);
		}
		
		if (!testResult) {
			var testElement = document.getElementById('certificationTest');
			testElement.style.display = 'block';
			scrollToElement(elementToScrollTo);
		}
		
		return testResult;
	}
	
	function scrollToElement(elementToScrollTo) {
		var selectedPosY = 0;

		while (elementToScrollTo != null) {
			selectedPosY += elementToScrollTo.offsetTop;
			elementToScrollTo = elementToScrollTo.offsetParent;
		}
		
		window.scrollTo(0, selectedPosY);
	}
	
	function toggleLayer(divID) {
				if (document.getElementById) {
					var style = document.getElementById(divID).style;
					style.display = style.display ? &quot;&quot; : &quot;block&quot;;
				} else if (document.all) {
					var style = document.all[divID].style;
					style.display = style.display ? &quot;&quot; : &quot;block&quot;;
				} else if (document.layers) {
					var style = document.layers[divID].style;
					style.display = style.display ? &quot;&quot; : &quot;block&quot;;
				}

				return false;
	}
var answers = new Array();answers[1] = &quot;T&quot;;answers[2] = &quot;T&quot;;answers[3] = &quot;F&quot;;answers[4] = &quot;F&quot;;answers[5] = &quot;T&quot;;answers[6] = &quot;F&quot;;answers[7] = &quot;F&quot;;answers[8] = &quot;T&quot;;answers[9] = &quot;T&quot;;answers[10] = &quot;T&quot;;answers[11] = &quot;T&quot;;answers[12] = &quot;T&quot;;answers[13] = &quot;T&quot;;answers[14] = &quot;F&quot;;answers[15] = &quot;F&quot;;answers[16] = &quot;T&quot;;answers[17] = &quot;T&quot;;answers[18] = &quot;T&quot;;answers[19] = &quot;F&quot;;answers[20] = &quot;T&quot;;answers[21] = &quot;F&quot;;answers[22] = &quot;T&quot;;answers[23] = &quot;F&quot;;answers[24] = &quot;F&quot;;answers[25] = &quot;T&quot;;answers[26] = &quot;T&quot;;answers[27] = &quot;T&quot;;answers[28] = &quot;F&quot;;answers[29] = &quot;T&quot;;answers[30] = &quot;F&quot;;answers[31] = &quot;F&quot;;answers[32] = &quot;T&quot;;answers[33] = &quot;T&quot;;answers[34] = &quot;T&quot;;answers[35] = &quot;T&quot;;answers[36] = &quot;T&quot;;answers[37] = &quot;F&quot;;answers[38] = &quot;T&quot;;answers[39] = &quot;T&quot;;answers[40] = &quot;F&quot;;answers[41] = &quot;T&quot;;answers[42] = &quot;T&quot;;answers[43] = &quot;T&quot;;answers[44] = &quot;T&quot;;answers[45] = &quot;F&quot;;answers[46] = &quot;F&quot;;answers[47] = &quot;F&quot;;answers[48] = &quot;F&quot;;answers[49] = &quot;T&quot;;answers[50] = &quot;T&quot;;
&lt;/script&gt;
&lt;strong&gt;Don't pay unless you pass!&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;Become a personal trainer and be on the fast track for success with the most user friendly certification tests in the industry.&lt;br /&gt;&lt;br /&gt;&lt;div id=&quot;start&quot;&gt;&lt;a href=&quot;#&quot; onclick=&quot;toggleLayer('certificationTest'); toggleLayer('grade');&quot;&gt;&lt;span&gt;Start The Test&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div id=&quot;certificationTest&quot;&gt;&lt;div id=&quot;question1Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 1.&lt;/strong&gt;&lt;br /&gt;Anaerobic activity does not utilize oxygen intake for muscular contraction.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;1&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity is activity that utilizes oxygen intake for muscular contraction.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question1&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question1&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question2Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 2.&lt;/strong&gt;&lt;br /&gt;Aerobic activity is activity that utilizes oxygen intake for muscular contraction.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;2&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity is activity that keeps you at or above 60% of target heart rate.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question2&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question2&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question3Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 3.&lt;/strong&gt;&lt;br /&gt;As the heart strengthens, the resting heart rate decreases.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;3&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity increases your resting heart rate.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question3&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question3&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question4Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 4.&lt;/strong&gt;&lt;br /&gt;Aerobic activity should improve all cardiovascular performance.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;4&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity decreases your systolic blood pressure and increases your diastolic blood pressure.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question4&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question4&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question5Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 5.&lt;/strong&gt;&lt;br /&gt;Aerobic activity should improve all cardiovascular performance.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;5&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity reduces cholesterol levels.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question5&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question5&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question6Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 6.&lt;/strong&gt;&lt;br /&gt;Aerobic activity is an endurance activity.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;6&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobic activity increases flexibility, balance, and muscle bulk.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question6&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question6&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question7Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 7.&lt;/strong&gt;&lt;br /&gt;Over-training is detrimental to any type of physical development.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;7&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;To be fit, one should participate in aerobic activity six to seven days per week.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question7&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question7&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question8Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 8.&lt;/strong&gt;&lt;br /&gt;Aerobic activity is an endurance activity.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;8&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;For maximal benefit of time efficiency for muscular response, aerobic activity should last 45 minutes to one hour.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question8&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question8&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question9Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 9.&lt;/strong&gt;&lt;br /&gt;Target heart rate zone and maximal target heart rate are not the same.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;9&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;One should keep in his/her target heart rate zone for at least 30 minutes during aerobic activity.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question9&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question9&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question10Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 10.&lt;/strong&gt;&lt;br /&gt;Aerobic output should be limited during pregnancy.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;10&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Pregnant women should not have a heart rate of over 140 beats per minute.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question10&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question10&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question11Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 11.&lt;/strong&gt;&lt;br /&gt;Pregnant women may exercise moderately through the second trimester.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;11&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;High impact aerobic activity is not advisable for pregnant women after the second trimester.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question11&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question11&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question12Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 12.&lt;/strong&gt;&lt;br /&gt;Holding breath is never advisable during exertion.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;12&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Pregnant women should not hold their breath during aerobic activity.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question12&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question12&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question13Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 13.&lt;/strong&gt;&lt;br /&gt;Holding breath is never advisable during exertion.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;13&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;It is not advised for any person to hold their breath during aerobic activity.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question13&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question13&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question14Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 14.&lt;/strong&gt;&lt;br /&gt;Holding your breath effects all of the cardiovascular system.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;14&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Holding your breath effects your heart rate but not your blood pressure.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question14&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question14&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question15Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 15.&lt;/strong&gt;&lt;br /&gt;Target heart rate = (220-age) * .65 - .85&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;15&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Maximal target heart rate can be found by subtracting your age from 240.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question15&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question15&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question16Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 16.&lt;/strong&gt;&lt;br /&gt;Recovery heart rate should always be taken after an aerobic workout.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;16&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Recovery heart rate should be under 120 bpm in 2 - 5 minutes after an aerobic workout.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question16&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question16&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question17Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 17.&lt;/strong&gt;&lt;br /&gt;Higher steps = more exertion.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;17&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;In step aerobics, the height of the platform should be a reflection of your class' skill level.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question17&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question17&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question18Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 18.&lt;/strong&gt;&lt;br /&gt;Slipping and tendon injuries can be caused by hanging the heels on impact movements.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;18&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;One should not let heels hang off the platform in step aerobics.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question18&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question18&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question19Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 19.&lt;/strong&gt;&lt;br /&gt;Stepping forward off the platform may have adverse effects on the knees.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;19&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Stepping forward off of the platform should be a common movement in aerobics classes.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question19&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question19&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question20Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 20.&lt;/strong&gt;&lt;br /&gt;Adding arm movement increases heart rate.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;20&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Adding arm movements to a step aerobic workout raises the intensity level.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question20&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question20&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question21Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 21.&lt;/strong&gt;&lt;br /&gt;Stepping and running are different exercises.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;21&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;The height of a twelve-inch step represents running nine miles per hour.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question21&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question21&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question22Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 22.&lt;/strong&gt;&lt;br /&gt;Simple sugars are the first fuel source used.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;22&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Aerobics classes should last at least 30 minutes so that fat can be burned as an energy source.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question22&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question22&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question23Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 23.&lt;/strong&gt;&lt;br /&gt;Simple sugars are the first fuel source used.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;23&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Your first energy source burned in protein.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question23&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question23&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question24Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 24.&lt;/strong&gt;&lt;br /&gt;Cool-downs bring the heart rate down safely.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;24&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A cool-down is not necessary for an aerobics class.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question24&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question24&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question25Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 25.&lt;/strong&gt;&lt;br /&gt;Shin splints are muscular tears.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;25&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Shin-splints are caused by a slight tear of the anterior tibialis&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question25&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question25&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question26Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 26.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;26&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Straining Achilles tendons and hyper-extended knees are common step aerobic injures caused by bad form.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question26&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question26&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question27Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 27.&lt;/strong&gt;&lt;br /&gt;Ballistic stretching is not recommended for warm-ups.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;27&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Your step-aerobic warm-up should consist of stretching and slow movements to a set rhythm.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question27&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question27&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question28Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 28.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;28&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;In step-aerobics, your heels should come off the floor during lunges.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question28&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question28&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question29Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 29.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;29&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;You should not pivot while standing on a weight-bearing knee.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question29&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question29&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question30Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 30.&lt;/strong&gt;&lt;br /&gt;Uncoordinated movement may result in injury.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;30&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Legs becoming fatigued and uncoordinated is normal and nothing to worry about.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question30&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question30&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question31Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 31.&lt;/strong&gt;&lt;br /&gt;Aerobics classes should keep participants in the target heart rate zone.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;31&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A rapid heart rate often happens towards the end of an aerobic workout.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question31&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question31&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question32Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 32.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;32&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A V-step is wider than a basic step.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question32&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question32&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question33Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 33.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;33&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;An A-step is wider than a basic step.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question33&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question33&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question34Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 34.&lt;/strong&gt;&lt;br /&gt;Pivoting is essential in turning.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;34&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A turn-step involves a pivot.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question34&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question34&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question35Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 35.&lt;/strong&gt;&lt;br /&gt;A Z-step is not a linear motion.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;35&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A Z-step is a diagonal motion.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question35&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question35&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question36Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 36.&lt;/strong&gt;&lt;br /&gt;Correct form is essential in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;36&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A X-step should be started by straddling the platform.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question36&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question36&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question37Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 37.&lt;/strong&gt;&lt;br /&gt;Kickbox stances are on the balls of the feet.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;37&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A kickbox stance involves most of the weight on your heels.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question37&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question37&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question38Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 38.&lt;/strong&gt;&lt;br /&gt;Kickboxing is aerobics utilizing the upper and lower body.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;38&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Kickbox aerobics utilizes punches in conjunction with kicks.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question38&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question38&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question39Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 39.&lt;/strong&gt;&lt;br /&gt;A side-kick utilizes a hip pivot.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;39&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A side-kick is thrust from the hip joint.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question39&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question39&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question40Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 40.&lt;/strong&gt;&lt;br /&gt;Kicking movements only involve leg motions.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;40&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Jab, hook, cross, and uppercut are all common kicking movements.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question40&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question40&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question41Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 41.&lt;/strong&gt;&lt;br /&gt;Some punches and kicks have the same name.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;41&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A round-house can be a punch or a kick.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question41&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question41&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question42Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 42.&lt;/strong&gt;&lt;br /&gt;Front = forward.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;42&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A front kick should be performed with the ball of the foot forward.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question42&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question42&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question43Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 43.&lt;/strong&gt;&lt;br /&gt;Back kicks are also known as mule kicks.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;43&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A back kick should be performed with the heel as the striking surface.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question43&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question43&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question44Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 44.&lt;/strong&gt;&lt;br /&gt;Spinning movements require advanced coordination.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;44&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Spinning movements should be avoided except in very advanced classes.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question44&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question44&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question45Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 45.&lt;/strong&gt;&lt;br /&gt;Kick height should be determined by the skill and flexibility of the practitioner.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;45&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;A crescent kick should be knee height.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question45&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question45&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question46Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 46.&lt;/strong&gt;&lt;br /&gt;Kickbox aerobics should be used only for an aerobic workout.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;46&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Kickbox aerobics is a valid form of self-defense.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question46&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question46&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question47Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 47.&lt;/strong&gt;&lt;br /&gt;Hyper-extension of any joint in not advised in any impact sport.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;47&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;When kicking, one should extend until locking the knee in place.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question47&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question47&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question48Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 48.&lt;/strong&gt;&lt;br /&gt;High intensity and impact activities are not advised for all levels of fitness.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;48&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Kickbox aerobics is a suitable form of exercise for all ages.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question48&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question48&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question49Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 49.&lt;/strong&gt;&lt;br /&gt;Keeping in the target heart rate zone is essential for development.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;49&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Tracking target heart rate is essential in any type of aerobics class.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question49&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question49&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;div id=&quot;question50Hint&quot; class=&quot;questionHint&quot;&gt;&lt;p class=&quot;noMarginNoPadding red&quot;&gt;&lt;em&gt;&lt;strong&gt;Your answer is incorrect  for question 50.&lt;/strong&gt;&lt;br /&gt;Aerobic workouts target cardiovascular health.&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionNumber&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;em&gt;50&lt;/em&gt;.&lt;/p&gt;&lt;/div&gt; &lt;div class=&quot;questionText&quot;&gt;&lt;p class=&quot;noMarginNoPadding&quot;&gt;&lt;strong&gt;Cardiovascular health can be improved by any form of aerobics.&lt;/strong&gt;&lt;br /&gt;&lt;input type=&quot;radio&quot; name=&quot;question50&quot; value=&quot;T&quot; /&gt; True &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;radio&quot; name=&quot;question50&quot; value=&quot;F&quot; checked=&quot;checked&quot; /&gt; False&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;questionClear&quot;&gt;&amp;nbsp;&lt;/div&gt;&lt;/div&gt;
&lt;/notextile&gt;</body>
  <variants type="array">
    <variant>
      <compare-at-price type="decimal" nil="true"></compare-at-price>
      <created-at type="datetime">2008-02-02T11:31:44-06:00</created-at>
      <fulfillment-service>manual</fulfillment-service>
      <grams type="integer">0</grams>
      <id type="integer">3058822</id>
      <inventory-management></inventory-management>
      <inventory-policy>deny</inventory-policy>
      <inventory-quantity type="integer">1</inventory-quantity>
      <option1>Certificate Only (1 Year)</option1>
      <option2 nil="true"></option2>
      <option3 nil="true"></option3>
      <position type="integer">1</position>
      <price type="decimal">99.00</price>
      <product-id type="integer">1414622</product-id>
      <requires-shipping type="boolean">true</requires-shipping>
      <sku></sku>
      <taxable type="boolean">true</taxable>
      <title>Certificate Only (1 Year)</title>
      <updated-at type="datetime">2009-12-11T04:22:00-06:00</updated-at>
    </variant>
    <variant>
      <compare-at-price type="decimal" nil="true"></compare-at-price>
      <created-at type="datetime">2008-02-02T11:31:44-06:00</created-at>
      <fulfillment-service>manual</fulfillment-service>
      <grams type="integer">0</grams>
      <id type="integer">3058832</id>
      <inventory-management></inventory-management>
      <inventory-policy>deny</inventory-policy>
      <inventory-quantity type="integer">1</inventory-quantity>
      <option1>Certificate &amp; Pocket Certification Card (1 Year)</option1>
      <option2 nil="true"></option2>
      <option3 nil="true"></option3>
      <position type="integer">2</position>
      <price type="decimal">125.00</price>
      <product-id type="integer">1414622</product-id>
      <requires-shipping type="boolean">true</requires-shipping>
      <sku></sku>
      <taxable type="boolean">true</taxable>
      <title>Certificate &amp; Pocket Certification Card (1 Year)</title>
      <updated-at type="datetime">2009-12-11T04:22:07-06:00</updated-at>
    </variant>
    <variant>
      <compare-at-price type="decimal" nil="true"></compare-at-price>
      <created-at type="datetime">2008-02-02T11:31:44-06:00</created-at>
      <fulfillment-service>manual</fulfillment-service>
      <grams type="integer">0</grams>
      <id type="integer">4834892</id>
      <inventory-management></inventory-management>
      <inventory-policy>deny</inventory-policy>
      <inventory-quantity type="integer">1</inventory-quantity>
      <option1>Certificate &amp; Pocket Certification Card (Lifetime Renewal)</option1>
      <option2 nil="true"></option2>
      <option3 nil="true"></option3>
      <position type="integer">3</position>
      <price type="decimal">299.00</price>
      <product-id type="integer">1414622</product-id>
      <requires-shipping type="boolean">true</requires-shipping>
      <sku></sku>
      <taxable type="boolean">true</taxable>
      <title>Certificate &amp; Pocket Certification Card (Lifetime Renewal)</title>
      <updated-at type="datetime">2009-12-11T04:22:20-06:00</updated-at>
    </variant>
  </variants>
  <images type="array">
    <image>
      <created-at type="datetime">2008-02-02T11:31:44-06:00</created-at>
      <id type="integer">2790192</id>
      <position type="integer">1</position>
      <product-id type="integer">1414622</product-id>
      <updated-at type="datetime">2008-12-25T21:05:12-06:00</updated-at>
      <src>http://cdn.shopify.com/s/files/1/0009/1112/products/step1.jpg?1268275960</src>
    </image>
    <image>
      <created-at type="datetime">2008-02-02T11:31:44-06:00</created-at>
      <id type="integer">2790202</id>
      <position type="integer">2</position>
      <product-id type="integer">1414622</product-id>
      <updated-at type="datetime">2008-12-25T21:05:12-06:00</updated-at>
      <src>http://cdn.shopify.com/s/files/1/0009/1112/products/step2.jpg?1268275960</src>
    </image>
  </images>
  <options type="array">
    <option>
      <name>Title</name>
    </option>
  </options>
</product>
