score= 0 print("**********Sabreen's Quiz**********") print("\n___Quiz : The States of India___") print("This Quiz is based on the different States of India. This quiz consists of 8 Questions. Each Question is of 10 points. All Questions are required. You can view your score at the end of the quiz. Have fun!") print("\n Q1. Which is the largest state in India in terms of area?") print("Answer Options: \na.Rajasthan \nb.Madhya Pradesh \nc.Maharashtra \nd.Gujrat") ans1=input("Select the correct answer by typing a, b, c or d.\n") if ans1== "a" or ans1== "A": print("Yup!Thats the right answer!") score= score + 10 else: print("Sorry,Thats the wrong answer. The correct answer was : A") print("\nQ2. Which of the following state is also known as ’French Riviera of the East'?") print("Answer Options: \na.Daman & Diu \nb.Puducherry \nc.Goa \nd.Kochi") ans2=input("Select the correct answer by typing a, b, c or d.\n") if ans2== "b" or ans2== "B": print("Yup!Thats the right answer!") score= score + 10 else: print("Sorry,Thats the wrong answer. The correct answer was : B") print("\nQ3. Which Indian state is popularly known as \"God's Own Country\"?") print("Answer Options: \na.Gujrat \nb.Madhya Pradesh \nc.Kerala \nd.Lakshwadeep") ans3=input("Select the correct answer by typing a, b, c or d.\n") if ans3== "c" or ans3== "C": print("Yup!Thats the right answer!") score= score + 10 else: print("Sorry,Thats the wrong answer. The correct answer was : C") print("\nQ4. Which state is popularly known as the 'Land of the Highlanders' and is one of the states of the Northeast India?") print("Answer Options: \na.Mizoram \nb.Manipur \nc.Arunachal Pradesh \nd.Nagaland ") ans4=input("Select the correct answer by typing a, b, c or d.\n") if ans4== "a" or ans4== "A": print("Yup!Thats the right answer!") score= score + 10 else: print("Sorry,Thats the wrong answer. The correct answer was : A") print("\nQ5. Which of the following Indian state to provide 100% electricity, metalled road and portable drinking water to its entire village?") print("Answer Options: \na.Madhya Pradesh \nb.Telangana \nc.Gujrat \nd.Haryana ") ans5=input("Select the correct answer by typing a, b, c or d.\n") if ans5== "d" or ans5== "D": print("Yup!Thats the right answer!") score= score + 10 else: print("Sorry,Thats the wrong answer. The correct answer was : D") print("\nQ6. Namma Metro rapid transport system is operationalised in which state in India?") print("Answer Options: \na.Tamil Nadu \nb.Karnataka \nc.Maharashtra \nd.Goa ") ans6=input("Select the correct answer by typing a, b, c or d.\n") if ans6== "b" or ans6== "B": print("Yup!Thats the right answer!") score= score + 10 else: print("Sorry,Thats the wrong answer. The correct answer was : B") print("\nQ7. Kolkata is the capital of which eastern state?") print("Answer Options: \na.West Bengal \nb.Orissa \nc.Jharkhand \nd.Tripura ") ans7=input("Select the correct answer by typing a, b, c or d.\n") if ans7== "a" or ans7== "A": print("Yup!Thats the right answer!") score= score + 10 else: print("Sorry,Thats the wrong answer. The correct answer was : A") print("\nQ8. Which of the following states is the largest among the seven sister states? ") print("Answer Options: \na.Assam \nb.Meghalaya \nc.Arunachal Pradesh \nd.Nagaland ") ans8=input("Select the correct answer by typing a, b, c or d.\n") if ans8== "c" or ans8== "C": print("Yup!Thats the right answer!") score= score + 10 else: print("Sorry,Thats the wrong answer. The correct answer was : C") print("\n Success! You have reached the end. Well done! Your total score is",score,". Thanks for attempting the Quiz!") print("\n**********The End**********")