#quiz #Find me!! print("Welcome to Prithika's quiz") print("") #guidelines for the quiz print('''There will be a set of EIGHT questions which is of MCQ pattern.\n For each correct answer you will get 10 points & for every wrong answer 5 points get deducted. \n \n ''') name = input("Enter your name :") score = 0 #Lets start with the 1st question print("Lets begin with the 1st question...", name) print("") print("1. Im a writer also known as a human calculator. WHO AM I?") print("") print("Options are:") print("") print("A. SRINIVASA RAMANUJAN") print("B. SHAKUNTALA DEVI") print("C. PARAMESHWARA") print("D. ARYABHATTA") print("") q1 = input("Your option is:") if q1 == "b" or q1 == "B": print("Right answer", name, "Keep it up!!!") score = score + 10 else: print("Bad Luck.", name, " The correct answer is... SHAKUNTALA DEVI") score = score - 5 print("Your current score is:", score) print("___________________________________________________________________________________________________") print("") #Lets start the 2rd question print("2. I'm a former South african president & a political leader. WHO AM I?") print("") print("options are:") print("") print("A. Mauricio Macri") print("B. Evo Morales") print("C. Nelson Mandela") print("D. Billie Holiday") print("") q2 =input("Your option is") if q2 == "c" or q2 == "C": print("WELL DONE... Right answer", name) score = score + 10 else: print("Bad Luck.",name, " The answer is... NELSON MANDELA") score = score - 5 print("") print("Your current score is :",score) print("___________________________________________________________________________________________________") print("") print("") #lets go to the 3rd question print("3. I'm a British author & creator of a young sorcerer's story. WHO AM I?") print("") print("OPTIONS ARE:") print("") print("A. JK ROWLING") print("B. JAMES JOYCE") print("C. ANTON CHEKHOV") print("D. LEO TOLSTOY") print("") q3 = input("Your option is:") if q3 == "a" or q3 == "A": print("GOOD JOB! Right answer", name) score = score + 10 else: print("Bad Luck.",name, " The answer is... JK ROWLING") score = score -5 print("") print("Your current score is :",score) print("______________________________________________________________________________________________") print("") print("") #lets goo to the 4th question print("4. I'm the oldest fibre to be found. WHO AM I?") print("") print("A. COTTON FIBRE") print("B. FLAX FIBRE") print("C. SISAL FIBRE") print("D. JUTE FIBRE") print("") q4 = input("Your option is:") if q4 == "b" or q4 == "B": print("SUPERB ! ",name, "Right answer") score = score + 10 else: print("Bad Luck. The answer is... FLAX FIBRE") score = score -5 print("") print("Your current score is :",score) print("________________________________________________________________________________________________") print("") print("") #lets goo to the 5th question print("5. Which of these early symptoms that people should look for COVID-19?") print("") print("A. BODY PAIN") print("B. RASH ON SKIN") print("C. LOSS OF SMELL & TASTE, FEVER & COUGH") print("") q5 = input("Your option is:") if q5 == "c" or q5 == "C": print("Right answer", name) score = score + 10 else: print("Bad Luck.",name, " The answer is... LOSS OF SMELL & TASTE, FEVER & COUGH") score = score - 5 print("") print("Your current score is :",score) print("__________________________________________________________________________________________________") print("") print("") #lets goo to the 6th question print("6. The first Indian to win a gold medal at the Olympics is?") print("") print("A. ABHINAV BHINDRA") print("B. SUSHIL KUMAR") print("C. VIJENDRA KUMAR") print("D. LEANDER PEAS") print("") q6 = input("Your option is:") if q6 == "a" or q6 == "A": print("AMAZING ! ",name, "Right answer") score = score + 10 else: print("Bad Luck. The answer is... FLAX FIBRE") score = score - 5 print("") print("Your current score is :",score) print("___________________________________________________________________________________________________________") print("") print("") #lets goo to the 7th question print("7. I'm the creator of PYTHON programing language. Who am I?") print("") print("A. JAMES GOSLING") print("B. GUIDO VAN ROSSUM") print("C. Bjarne Stroustrup") print("D. Tim Berners-Lee") print("") q7 = input("Your answer option:") if q7 == "b" or q7 == "B": print("GREAT! ",name, "Right answer") score = score + 10 else: print("Bad Luck. The answer is... GUIDO VAN ROSSUM") score = score - 5 print("") print("Your current score is :",score ) print("___________________________________________________________________________________") print("") #lets go to the 8th question print("8. I was the 1st CEO of Google. WHO AM I?") print("") print("A. LARRY PAGE") print("B. SUNDAR PICHAI") print("C. BRIAN STUART") print("D. ERIC SCHIMDT") print("") q8 = input("Your option is:") print("") if q8 == "d" or q8 == "D": print("SUPER! ",name, "Right answer") score = score + 10 else: print("Bad Luck. The answer is... ERIC SCHIMDT") score = score -5 #quiz over print("Your FINAL score is :", score, name) print("") print("") print("Thank u" , name, "for attending the Quiz...")