# Quiz Questions From Percy Jackson books # Code Starts score=0 print("""Q1 What is Percy Jackson's real name? A-Peter Johnson B-Perceus Jackson C-Perseus Jackson """) ans = input("Enter answer as A,B or C :") if(ans=='C' or ans=='c'): print("Right answer") score=score+10 print("""Your score is=""",score) else: print("Wrong answer;Sorry. 5 marks will be deducted from your score") score=score-5 print("""Your score is=""",score) print("""Q2 Who is Percy's father? A-Zeus B-Poseidon C-Hades """) ans = input("Enter answer as A,B or C :") if(ans=='B' or ans=='b'): print("Right answer") score=score+10 print("""Your score is=""",score) else: print("Wrong answer;Sorry. 5 marks will be deducted from your score") score=score-5 print("""Your score is=""",score) print("""Q3 What is Percy's sword's name in Ancient Greek & English? A-Anaklusmos-Riptide B-Anaklusmos-Backbiter """) ans = input("Enter answer as A or B :") if(ans=='A' or ans=='a'): print("Right answer") score=score+10 print("""Your score is=""",score) else: print("Wrong answer;Sorry. 5 marks will be deducted from your score") score=score-5 print("""Your score is=""",score) print("""Q4 Which Camp is for Greek Demigods? A-Camp Half-Blood B-Camp Jupiter """) ans = input("Enter answer as A or B :") if(ans=='A' or ans=='a'): print("Right answer") score=score+10 print("""Your score is=""",score) else: print("Wrong answer;Sorry. 5 marks will be deducted from your score") score=score-5 print("""Your score is=""",score) print("""Q5 Who is Quintus? A-Swordsman B-Architect,Scholar C-Daedalus,Child of Athena D-All of the above """) ans = input("Enter answer as A,B,C or D :") if(ans=='D' or ans=='d'): print("Right answer") score=score+10 print("""Your score is=""",score) else: print("Wrong answer;Sorry. 5 marks will be deducted from your score") score=score-5 print("""Your score is=""",score) print("""Q6 What is Annabeth scared of? A-Monsters B-Spiders C-Dragons """) ans = input("Enter answer as A,B or C :") if(ans=='B' or ans=='b'): print("Right answer") score=score+10 print("""Your score is=""",score) else: print("Wrong answer;Sorry. 5 marks will be deducted from your score") score=score-5 print("""Your score is=""",score) print("""Q7 What is the beast Percy is searching in his third adventure? A-Typhon B-Polyphemus C-Ophiotaurus """) ans = input("Enter answer as A,B or C :") if(ans=='C' or ans=='c'): print("Right answer") score=score+10 print("""Your score is=""",score) else: print("Wrong answer;Sorry. 5 marks will be deducted from your score") score=score-5 print("""Your score is=""",score) print("""Q8 Who is the General of the Titans & terror of the Gods? A-Atlas B-Typhon C-Kronos """) ans = input("Enter answer as A,B or C :") if(ans=='A' or ans=='a'): print("Right answer") score=score+10 print("""Your score is= """,score) else: print("Wrong answer;Sorry. 5 marks will be deducted from your score") score=score-5 print("""Your score is=""",score) print("""Q9 What are the things Percy finds & returns to two Olympian Gods & which Gods? A-Master Bolt to Zeus & Trident to Poseidon B-Trident to Poseidon & Helmet Of Darkness to Hades C-Master Bolt to Zeus & Helmet Of Darkness to Hades """) ans = input("Enter answer as A,B or C :") if(ans=='C' or ans=='c'): print("Right answer") score=score+10 print("""Your score is=""",score) else: print("Wrong answer;Sorry. 5 marks will be deducted from your score") score=score-5 print("""Your score is=""",score) print("""Q10 What Is a Manticore? A-Half-Human,Half-Lion B-Half-Horse,Half-Fish C-Half-Cow,Half-Serpent """) ans = input("Enter answer as A,B or C :") if(ans=='A' or ans=='a'): print("Right answer") score=score+10 print("""Your score is=""",score) else: print("Wrong answer;Sorry. 5 marks will be deducted from your score ") score=score-5 print("""Your score is=""",score) print("""Q11 Who is Chiron? A-Teacher,Centaur, B-Searcher,Satyr C-God """) ans = input("Enter answer as A,B or C :") if(ans=='A' or ans=='a'): print("Right answer") score=score+10 print("""Your score is=""",score) else: print("Wrong answer;Sorry. 5 marks will be deducted from your score") score=score-5 print("""Your score is=""",score) print("Your total score is=",score) # Code Ends # Quiz Questions From Percy Jackson books # Done By Karthik Deevan