Our brain is one of the most complex organs in our body. It controls everything we do, from our thoughts, emotions, and movements.
But how much do you know about brain health? Take this quiz to test your knowledge and learn more about the importance of taking care of your brain.
Question 1: What percentage of our brain do we use?
a) 10%.
b) 20%.
c) 50%.
d) 100%.
Question 2: Which of the following is not a way to improve brain health?
a) Eating a nutritious diet.
b) Getting enough sleep.
c) Engaging in physical exercise.
d) Watching TV for long periods of time.
Question 3: What is the best way to reduce the risk of dementia?
a) Doing crossword puzzles.
b) Taking dietary supplements.
c) Quitting smoking.
d) None of the above.
Question 4: Which of the following can improve memory?
a) Listening to music.
b) Drinking alcohol.
c) Getting enough sleep.
d) Eating junk food.
Question 5: What is the recommended amount of sleep for adults?
a) 3-4 hours.
b) 5-6 hours.
c) 7-8 hours.
d) 9-10 hours.
Question 6: Which of the following is a symptom of a concussion?
a) Dizziness.
b) Fatigue.
c) Nausea.
d) All of the above.
Question 7: Which of the following is not a benefit of mindfulness meditation?
a) Improved focus.
b) Reduced stress.
c) Increased memory.
d) Lower blood pressure.
Question 8: What is the recommended amount of physical exercise for adults?
a) 15-30 minutes per day.
b) 30-60 minutes per day.
c) 60-90 minutes per day.
d) 2-3 hours per day.
Question 9: Which of the following is a good source of omega-3 fatty acids?
a) Olive oil.
b) Flaxseed.
c) Butter.
d) Chocolate.
Question 10: Which of the following can improve brain function?
a) Caffeine.
b) Sugar.
c) Nicotine.
d) None of the above.
Quiz Results
Now it’s time to check your answers and see how well you did!.
<?php $score = 0; $correct_answers = array("d", "d", "c", "a", "c", "d", "c", "b", "b", "d"); if(isset($_POST['submit'])) { if(!empty($_POST['q1']) && !empty($_POST['q2']) && !empty($_POST['q3']) && !empty($_POST['q4']) && !empty($_POST['q5']) && !empty($_POST['q6']) && !empty($_POST['q7']) && !empty($_POST['q8']) && !empty($_POST['q9']) && !empty($_POST['q10'])) { $answers = array($_POST['q1'], $_POST['q2'], $_POST['q3'], $_POST['q4'], $_POST['q5'], $_POST['q6'], $_POST['q7'], $_POST['q8'], $_POST['q9'], $_POST['q10']); for($i = 0; $i < count($answers); $i++){ if($answers[$i] == $correct_answers[$i]){ $score++; } } $percent = ($score/10)*100; echo "You scored “.$percent.”% “.$score.”/10.
“; } else { echo ”Please answer all the questions.