score = 0 print("This is a quiz about a game of cricket, a game which is loved by people all over the world, a game where people undergo every emotion possible, cricket is a game consisting of two teams of 11 players, who have different roles like batsmen, bowlers, wicketkeepers \n") print("This is a quiz with a difficult of hard on a variety of questions from the different roles to the records broken by different players over time \n") print("\n") print("Question Number 1") question_1 = print("Who was the first person to hit six fours in six balls") print("Answer options \na.Chris Gayle \nb.Sachin Tendulkar \nc.Sandeep Patil \nd.Sir Vivian Richards\n") ans1 = input("Enter the correct option a,b,c and d") if ans1 == "a" or ans1 =="A": print("Correct Answer") score = (score + 10) else: print("wrong answer\n") print("Current Score:",score) print("\n") print("-------------------------------------------------------------------------") print("Question Number 2") question_2 = print("Which team has been the most succesful in BBL") print("Answer options \na.Melbourne Stars \nb.Sydney Sixers \nc.Hobart hurricanes \nd.Brisbane Heat\n") ans2 = input("Enter the correct option a,b,c and d") if ans2 == "b" or ans2 =="B": print("Correct Answer\n") score = (score + 10) else: print("wrong answer\n") print("current score:",score) print("\n") print("-------------------------------------------------------------------------") print("Question Number 3") question_3 = print("Which team has been the most succesful in BBL") print("Answer options \na.Champions cup \nb.Prudential Cup \nc.World Cup \nd.None of these\n") ans3 = input("Enter the correct option a,b,c and d") if ans3 == "b" or ans3 =="B": print("Correct Answer\n") score = (score + 10) else: print("wrong answer\n") print("current score:",score) print("\n") print("-------------------------------------------------------------------------") print("Question Number 4") question_4 = print("In what year was Wisden Cricketers of the Year first awarded?") print("Answer options \na.1889 \nb.1949 \nc.1982 \nd.1882\n") ans4 = input("Enter the correct option a,b,c and d") if ans4 == "a" or ans4 == "A": print("Correct Answer\n") score = (score + 10) else: print("wrong answer\n") print("current score:",score) print("\n") print("-------------------------------------------------------------------------") print("Question Number 5") question_5 = print("At which stadium did South Africa successfully chase down a score of 434 in a ODI against Australia?") print("Answer options \na.Wanderers \nb.Gabba \nc.SCG \nd.Pretoria\n") ans5 = input("Enter the correct option a,b,c and d") if ans5 == "a" or ans5 == "A": print("Correct Answer\n") score = (score + 10) else: print("wrong answer\n") print("current score:",score) print("\n") print("-------------------------------------------------------------------------") print("Question Number 6") question_6 = print("In a 2007 ICC World Twenty20 Super 8 match against India, English bowler Stuart Broad's last over was remarkably hit for 6 sixes by Indian batsmen Yuvraj Singh. Broad recorded figures of 0/60 from his 4 overs. How many runs did Broad concede in his first over?") print("Answer options \na.4 \nb.20 \nc.16 \nd.1\n") ans6 = input("Enter the correct option a,b,c and d") if ans6 == "a" or ans6 == "A": print("Correct Answer\n") score = (score + 10) else: print("wrong answer\n") print("current score:",score) print("\n") print("------------------------------------------------------------------------") print("Question Number 7") question_7 = print("Harold “Dickie” Bird is best known for his career in cricket as:") print("Answer options \na.Bowler \nb.Umpire \nc.Administrator \nd.Referee\n") ans7 = input("Enter the correct options a,b,c and d") if ans7 == "b" or ans7 == "B": print("Correct Answer\n") score = (score + 10) else: print("wrong answer\n") print("current score:",score) print("\n") print("-------------------------------------------------------------------------") print("Question Number 8") question_8 = print("n which year were the first laws of cricket believed to have been written?:") print("Answer options \na.1806 \nb.1893 \nc.1779\n") ans8 = input("Enter the correct options a,b,c and d") if ans8 == "c" or ans8 == "C": print("Correct Answer\n") score = (score + 10) else: print("wrong answer\n") print("current score:",score) print("\n") print("-------------------------------------------------------------------------") print("Question Number 9") question_9 = print("What is the slang term given to a ball that is bowled so well that it is considered unplayable by the batsman?") print("Answer options \na.Jaffa \nb.Bouncer \nc.Half Volley \nd.Yorker\n") ans9 = input("Enter the correct options a,b,c and d") if ans9 == "a" or ans9 == "A": print("Correct Answer\n") score = (score + 10) else: print("wrong answer\n") print("current score:",score) print("\n") print("------------------------------------------------------------------------") print("Question Number 10") question_10 = print("Who was the second captain to lift IPL trophy?") print("Answer options \na.MS Dhoni \nb.Herschelle Gibbs \nc.Adam Gilchrist \nd.Shane Warne\n") ans10 = input("Enter the correct options a,b,c and d") if ans10 == "c" or ans10 == "C": print("Correct Answer\n") score = (score + 10) else: print("wrong answer\n") print("current score:",score) print("\n") print("------------------------------------------------------------------------") print("Question Number 11") question_11 = print("Who was the first bowlers to get sachin out for his first duck in first class cricket") print("Answer options \na.Zaheer Khan \nb.Sreesanth \nc.Bhuvaneshwar kumar \nd.Anil Kumble\n") ans11 = input("Enter the correct options a,b,c and d") if ans11 == "c" or ans11 == "c": print("Correct Answer\n") score = (score + 10) else: print("wrong answer\n") print("current score:",score) print("\n") print("------------------------------------------------------------------------") print("Question Number 12") question_12 = print("First Indian to score a century in the ipl was:") print("Answer options \na.Sachin \nb.Virat \nc.Manish Pandey\n") ans12 = input("Enter the correct options a,b, and c") if ans12 == "c" or ans12 == "c": print("Correct Answer\n") score = (score + 10) else: print("wrong answer\n") print("current score:",score) print("\n") print("------------------------------------------------------------------------") print("This is a short quiz on the wonderful game of cricket, hope you enjoyed it and found it challenging, the following output displays your final score which has been counted throughtout the quiz ") print("\n") print("*Note that each question has a marking of 10 points for answering correctly.") print("\n") print("*Note that no negative marking has been done for any questions that are answered incorrectly") print("\n") print("Hope you have enjoyed the quiz and please let me know if any suggestions or ways to improve, Thank you") print("\n") print("Done By Abhinav Krishnan")