print('*******HOW WELL DO YOU KNOW THE WORLD*******') print(" *******LET'S CHECK IT OUT*******\n") score=0 print('Question1:What is the most populated country in the world?') print('a.India') print('b.Russia') print('c.China') print('d.USA\n') ans1=input('To give answer, enter a or b or c or d') if ans1=='c': print('') print('You have given the correct answer!!!\n') score=score+10 print('Your score is:',score) else: print('') print('You have given the wrong answer!!,') print('China is the most populated country in the world.\n') score=score-5 print('Your score is:',score) print('^^^^^^^^^^^^^^^^^^^***^^^^^^^^^^^^^^^^^^^') print('Question2:How many stars are there in the china flag?') print('a.Four') print('b.Five') print('c.Six') print('d.Seven\n') ans2=input('To give answer, enter a or b or c or d') if ans2=='b': print('') print('You have given the correct answer!!!\n') score=score+10 print('Your score is:',score) else: print('') print('You have given the wrong answer!!,') print('There are five stars present in the china flag.\n') score=score-5 print('Your score is:',score) print('^^^^^^^^^^^^^^^^^^^***^^^^^^^^^^^^^^^^^^^') print('Question3:What is the capital of Philippines?') print('a.Jakarta') print('b.Dili') print('c.Marawi') print('d.Manila\n') ans3=input('To give answer, enter a or b or c or d') if ans3=='d': print('') print('You have given the correct answer!!!\n') score=score+10 print('Your score is:',score) else: print('') print('You have given the wrong answer!!,') print('Manila is the capital of Philippines.\n') score=score-5 print('Your score is:',score) print('^^^^^^^^^^^^^^^^^^^***^^^^^^^^^^^^^^^^^^^') print('Question4:Which country is famous for mangoes?') print('a.India') print('b.Sri Lanka') print('c.Malaysia') print('d.Pakistan\n') ans4=input('To give answer, enter a or b or c or d') if ans4=='a': print('') print('You have given the correct answer!!!\n') score=score+10 print('Your score is:',score) else: print('') print('You have given the wrong answer!!,') print("India is famous for it's mangoes\n") score=score-5 print('Your score is:',score) print('^^^^^^^^^^^^^^^^^^^***^^^^^^^^^^^^^^^^^^^') print("Question5:Where is the 'Leaning tower of Pisa' located") print('a.France') print('b.Italy') print('c.Germany') print('d.Canada\n') ans5=input('To give answer, enter a or b or c or d') if ans5=='b': print('') print('You have given the correct answer!!!\n') score=score+10 print('Your score is:',score) else: print('') print('You have given the wrong answer!!,') print("The 'Leaning tower of Pisa' is located in italy") score=score-5 print('Your score is:',score) print('^^^^^^^^^^^^^^^^^^^***^^^^^^^^^^^^^^^^^^^') print('Question6:How long did it take to build the great wall of China?') print('a.20 years') print('b.10 years') print('c.15 years') print('d.5 years\n') ans6=input('To give answer, enter a or b or c or d') if ans6=='a': print('') print('You have given the correct answer!!!\n') score=score+10 print('Your score is:',score) else: print('') print('You have given the wrong answer!!,') print('It took approximately 20 years to build the great wall of China.\n') score=score-5 print('Your score is:',score) print('^^^^^^^^^^^^^^^^^^^***^^^^^^^^^^^^^^^^^^^') print('Question7:How many floors are there in Burj Khalifa?') print('a.185') print('b.139') print('c.163') print('d.203\n') ans7=input('To give answer, enter a or b or c or d') if ans7=='c': print('') print('You have given the correct answer!!!\n') score=score+10 print('Your score is:',score) else: print('') print('You have given the wrong answer!!,') print('There are 163 floors in Burj Khalifa.\n') score=score-5 print('Your score is:',score) print('^^^^^^^^^^^^^^^^^^^***^^^^^^^^^^^^^^^^^^^') print('Question8:which monument is taller....Taj Mahal or the qutub Minar?') print('a.Taj Mahal') print('b.Qutub Minar\n') ans8=input('To give answer, enter a or b') if ans8=='a': print('') print('You have given the correct answer!!!\n') score=score+10 print('Your score is:',score) else: print('') print('You have given the wrong answer!!,') print('Taj Mahal is taller than the Qutub Minar.\n') score=score-5 print('Your score is:',score) print('^^^^^^^^^^^^^^^^^^^***^^^^^^^^^^^^^^^^^^^') print('Question9:Which of the following country is in Europe?') print('a.Turkey') print('b.Georgia') print('c.Vietnam') print('d.Portugal\n') ans9=input('To give answer, enter a or b or c or d') if ans9=='d': print('') print('You have given the correct answer!!!\n') score=score+10 print('Your score is:',score) else: print('') print('You have given the wrong answer!!,') print('Portugal is in Europe.\n') score=score-5 print('Your score is:',score) print('^^^^^^^^^^^^^^^^^^^***^^^^^^^^^^^^^^^^^^^') print('Question10:Which country out of the following is not in Africa?') print('a.Cambodia') print('b.Morocco') print('c.Nigeria') print('d.Kenya\n') ans10=input('To give answer, enter a or b or c or d') if ans10=='c': print('') print('You have given the correct answer!!!\n') score=score+10 print('Your score is:',score) else: print('') print('You have given the wrong answer!!,') print('China is the most populated country in the world.\n') score=score-5 print('Your score is:',score) print('^^^^^^^^^^^^^^^^^^^***^^^^^^^^^^^^^^^^^^^\n') print(' Your final score is:',score) print('******THANK YOU FOR TAKING THE QUIZ******')