score = 0 print("**COVID 19 QUIZ**") print("**BY SARISHA GUPTA**") print("Let's start") print("Q1: How is COVID-19 passed on?") print("a) Through droplets that come from your mouth and nose when you cough or breathe out") print("b) By drinking unclean water") print("c) Both a and b") ans1 = input("Enter your answer as a,b or c") if ans1 == ("a"): print("Very good you have given the correct answer") score = score+5 print('Your current score is',score) print('**********************************') else: print("Sorry, you have given the wrong answer") print('Correct answer is option a') print('**************************************') print('Q2: What are the common symptoms of COVID-19?') print('a) A new and continuous cough') print('b) Fever') print('c) Tiredness') print('d) All of the above') ans2 = (input('Enter your answer as a,b,c or d')) if ans2=='d': print('Excellent, you have given the correct answer') score = score+5 print('Yor current score is',score) print('************************************') else: print("You have given the wrong answer") print('Correct answer is option d') print("*************************************") print('Q3: Can you always tell if someone has COVID-19? ') print('a) No – not everyone with COVID-19 has symptoms') print('b) Yes – it will be obvious, a person with COVID-19 coughs a lot') print('c) Yes – you can tell just by where a person comes from, their race and ethnicity') ans3 = (input('Enter your answer as a,b or c')) if ans3 == 'a': print("You have given the correct answer") score= score+5 print('Your current score is',score) print('************************************') else: print("You have given the wrong answer, try again") print('Correct answer is option a') print('******************************************') print('Q4: Can washing your hands protect you from COVID-19? ') print('a) Yes – but only if you use a strong bleach') print('b) Yes – normal soap and water or hand sanitizer is enough') print('c) No – Only washing your hands doesn’t stop COVID-19') ans4 = (input('Enter your answer as a,b or c')) if ans4 == 'c': print('Amazing,your answer is correct') score = score+5 print('Your current score is',score) print('*******************************') else: print('Sorry, your answer is wrong') print('Correct answer is option c') print('******************************') print('Q5: Which of the following people is COVID-19 more dangerous for? ') print('a) Older people – especially those aged 70 and above') print('b) People with certain underlying health conditions') print('c) Both a and b') ans5 = (input('Enter your answer as a,b or c')) if ans5== 'c': print('Congratulations, you have given the correct answer') score = score+5 print('Your current score is',score) print('********************************') else: print("Oops! your answer is wrong, try again") print('**************************************') print('Q6: When should fabric face masks be worn?') print('a) On public transport') print('b) In confined or crowded spaces') print('c) In small shops') print('d) All of the above') ans6 = (input('Enter your answer as a,b,c or d')) if ans6 == 'd': print('Your answer is correct') score = score+5 print('Your current score is',score) print('*****************************') else: print("Your answer is wrong") print('Correct answer is option d') print('*************************') print('Q7: Can COVID-19 be cured? ') print('a) Yes – Hot drinks can cure COVID-19') print('b) No – COVID-19 is a death sentence') print('c) No – but most people get better by themselves') ans7 = (input('Enter your answer as a,b or c')) if ans7 == 'c': print('You have given the correct answer') score = score+5 print('Your current score is',score) print('****************************') else: print('You have given the wrong answer') print('Correct answer is option c') print('***********************************') print('Q8: Which of the following is an example of physical distancing? ') print('a) You stop going to crowded places and visiting other people’s houses') print('b) You stop talking to the people you live with') print('c) You stop speaking to your friends on the phone') print('d) All of the above') ans8 = (input('Enter your answer as a,b,c or d')) if ans8 == 'a': print('Your answer is correct') score = score+5 print('Your current score is',score) print('*****************************') else: print('Your answer is wrong') print('Correct answer is option a') print('**************************') print('Q9: How can people living with HIV(human immunodeficiency virus) protect themselves from COVID-19?') print('a) Wash their hands regularly and follow the physical distancing advice') print('b) Keep taking their antiretroviral treatment') print('c) Exercise regularly, eat well and look after their mental health') print('d) All of the above') ans9 = (input('Enter your answer as a,b,c or d')) if ans9 == 'd': print('You have given the coreect answer') score= score+5 print('Your current score is',score) print('**********************************') else: print('Sorry,you have given the wrong answer') print('Correct answer is option d') print('***************************************') print('Q10: Are people living with HIV always more at risk? ') print('a) Yes – people with HIV have weaker immune systems') print('b) No – people who adhere to antiretroviral treatment (ART) and have a high CD4 count aren’t more at risk') ans10 = (input('Enter your answer as a or b')) if ans10 == 'b': print('Good, your answer is correct') score = score+5 print('Your current score is',score) print('*****************************') else: print('Your answer is wrong, you can try again') print('Correct answer is option b') print('**************************************') print('Your final score is',score)