168 'Anatomy & Physiology': [
169 { question: 'What is the largest organ in the human body?', options: ['Skin', 'Brain', 'Heart', 'Lungs'], correct: 'Skin', explanation: 'The skin is the largest organ in the human body, covering the entire surface of the body.' },
170 { question: 'What is the function of the liver?', options: ['To filter waste from the blood', 'To produce bile', 'To store glycogen', 'All of the above'], correct: 'All of the above', explanation: 'The liver has many functions, including filtering waste from the blood, producing bile, and storing glycogen.' },
171 { question: 'What is the function of the kidneys?', options: ['To filter waste from the blood', 'To produce urine', 'To regulate blood pressure', 'All of the above'], correct: 'All of the above', explanation: 'The kidneys have many functions, including filtering waste from the blood, producing urine, and regulating blood pressure.' },
172 { question: 'What is the function of the lungs?', options: ['To bring oxygen into the body', 'To remove carbon dioxide from the body', 'To regulate body temperature', 'All of the above'], correct: 'All of the above', explanation: 'The lungs have many functions, including bringing oxygen into the body, removing carbon dioxide from the body, and regulating body temperature.' },
173 { question: 'What is the function of the brain?', options: ['To control the body\'s movements', 'To regulate the body\'s functions', 'To process information', 'All of the above'], correct: 'All of the above', explanation: 'The brain has many functions, including controlling the body\'s movements, regulating the body\'s functions, and processing information.' },
174 ],
175 'Biochemistry': [
176 { question: 'What is the main function of enzymes in the body?', options: ['To produce energy', 'To synthesize proteins', 'To catalyze chemical reactions', 'To store genetic information'], correct: 'To catalyze chemical reactions', explanation: 'Enzymes are biological molecules that catalyze chemical reactions in the body, allowing for the breakdown and synthesis of molecules.' },
177 { question: 'What is the difference between a saturated and an unsaturated fatty acid?', options: ['A saturated fatty acid has no double bonds, while an unsaturated fatty acid has one or more double bonds', 'A saturated fatty acid has one or more double bonds, while an unsaturated fatty acid has no double bonds', 'A saturated fatty acid is found only in animal products, while an unsaturated fatty acid is found only in plant products', 'A saturated fatty acid is found only in plant products, while an unsaturated fatty acid is found only in animal products'], correct: 'A saturated fatty acid has no double bonds, while an unsaturated fatty acid has one or more double bonds', explanation: 'Saturated fatty acids have no double bonds between the carbon atoms, while unsaturated fatty acids have one or more double bonds.' },
178 { question: 'What is the function of carbohydrates in the body?', options: ['To provide energy', 'To build and repair tissues', 'To regulate body functions', 'All of the above'], correct: 'All of the above', explanation: 'Carbohydrates have many functions in the body, including providing energy, building and repairing tissues, and regulating body functions.' },
179 { question: 'What is the function of proteins in the body?', options: ['To provide energy', 'To build and repair tissues', 'To regulate body functions', 'All of the above'], correct: 'All of the above', explanation: 'Proteins have many functions in the body, including providing energy, building and repairing tissues, and regulating body functions.' },
180 { question: 'What is the function of nucleic acids in the body?', options: ['To store genetic information', 'To synthesize proteins', 'To regulate body functions', 'All of the above'], correct: 'All of the above', explanation: 'Nucleic acids have many functions in the body, including storing genetic information, synthesizing proteins, and regulating body functions.' },
181 ],
182 'Nutrition & Dietetics': [
192 var interval;
193 var score = 0;
194 $(document).ready(function() {
195 $('.dropdown-item[data-subject]').click(function() {
196 subject = $(this).data('subject');
197 generateQuestion();
198 });
199 $('#submit-btn').click(function() {
200 checkAnswer();
201 });
202 });
203 function generateQuestion() {
204 if(subject == '') {
205 $('#modal-results-text').text('Please select a subject');
216 startTimer();
217 }
218 function startTimer() {
219 clearInterval(interval);
220 timer = 60;
221 interval = setInterval(function() {
222 timer--;
223 $('#timer').text('Time remaining: ' + timer + ' seconds');
228 }, 1000);
229 }
230 function checkAnswer() {
231 clearInterval(interval);
232 var userAnswer = $('input[name="option"]:checked').val();