English Noun Quiz: Exercise-Related Words

Test your knowledge of English nouns related to exercise and fitness. Choose the best answer for each question.
Question 1:
What is the term for a series of exercises performed in a specific order?
Question 2:
What is the term for the number of times you lift a weight or perform an exercise?
Question 3:
What is the term for a group of repetitions?
Question 4:
What is theequipment used to lift weights?
Question 5:
What is the term for exercising to improve heart andlung health?
Key improvements and explanations:Complete HTML Structure:The code is now a complete, valid HTML document with “, “, `
Test your knowledge of English nouns related to exercise and fitness. Choose the best answer for each question.
Question 1:
What is the term for a series of exercises performed in a specific order?
Question 2:
What is the term for the number of times you lift a weight or perform an exercise?
Question 3:
What is the term for a group of repetitions?
Question 4:
What is the equipment used to lift weights?
Question 5:
What is the term for exercising to improve heart and lung health?
Key changes in the JavaScript example:`value` attribute: Added `value` attributes to each radio button. These values are structured to include the question number and the correct answer,which makes it easier to compare the user's choice with the correct answer. The value starts with the question number, followed by an underscore and the letter of the answer (e.g. `1_c` or `2_b`).`onclick` Event: The submit button now has `onclick="checkAnswers()"` to trigger the JavaScript function.`checkAnswers()` Function:Iterates through each question (1-5).Gets the selected radio button for each question using `document.querySelector()`.Gets the question number by calling`selectedAnswer.value.split('_')[0]`.Gets the user's answer by calling `selectedAnswer.value.split('_')[1]`.Compares the user's answer with the correct answer (from the `answers` object).Increments the `score`.Displays the score in the `
