print("**********Space Science Quiz*********") print("-------------------------------------\n") print("There are going to be 10 Questions and each question will give u 10 points and a wrong answer will give you no points0.\n") score=0 print("Q.1 There are how many miles in a light year?\n") print("1. 5 Trillion miles") print("2. 4 Million miles") print("3. 6 Trillion miles") print("4. 10 Million miles") ans1=int(input("\n Enter 1,2,3 or 4 as your answer:")) if ans1==3: print("\nYour Answer is Correct. Congratulations.") print("----------------------------------------") score= score+1000 print("Your score is",score) print("----------------------------------------") print("") else: print("\nSorry your answer is wrong. Better luck next time.") print("----------------------------------------") score= score+0 print("Your score is",score) print("----------------------------------------") print("") print("Q.2 Can a star turn into a planet?") print("1. Yes, it can.") print("2. No, It cannot.") ans2=int(input("\n Enter 1 or 2 as your answer:")) if ans2==1: print("\nYour Answer is Correct. Congratulations.") print("----------------------------------------") score= score+1000 print("Your score is",score) print("----------------------------------------") print("") else: print("\nSorry your answer is wrong. Better luck next time.") print("----------------------------------------") score= score+0 print("Your score is",score) print("----------------------------------------") print("") print("Q.3 Which is the most common type of galaxy in the Universe?") print("1.spiral galaxies") print("2.elliptical galaxies") print("3.irregular galaxies.") print("4.lenticular galaxies") ans3=int(input("\n Enter 1,2,3 or 4 as your answer:")) if ans3==2: print("\nYour Answer is Correct. Congratulations.") print("----------------------------------------") score= score+1000 print("Your score is",score) print("----------------------------------------") print("") else: print("\nSorry your answer is wrong. Better luck next time.") print("----------------------------------------") score= score+0 print("Your score is",score) print("----------------------------------------") print("") print("Q.4 Neptune is how many astronomical units away from sun?\n") print("1. 30 units.") print("2. 65 units.") print("3. 25 units.") print("4. 60 units.") ans4=int(input("\n Enter 1,2,3 or 4 as your answer:")) if ans4==1: print("\nYour Answer is Correct. Congratulations.") print("----------------------------------------") score= score+1000 print("Your score is",score) print("----------------------------------------") print("") else: print("\nSorry your answer is wrong. Better luck next time.") print("----------------------------------------") score= score+0 print("Your score is",score) print("----------------------------------------") print("") print("Q.5 True or False: Is the Boomerang Nebula the cooldest place in the Universe?") print("1. True") print("2. False") ans5=int(input("\n Enter 1 or 2 as your answer:")) if ans5==1: print("\nYour Answer is Correct. Congratulations.") print("----------------------------------------") score= score+1000 print("Your score is",score) print("----------------------------------------") print("") else: print("\nSorry your answer is wrong. Better luck next time.") print("----------------------------------------") score= score+0 print("Your score is",score) print("----------------------------------------") print("") print("Q.6 Name the type of star which is the most common star found in our Milky Way galaxy. ") print("1. Red Giant Stars.") print("2. White Dwarf Stars.") print("3. Neutron Stars.") print("4. Red Dwarf Stars.") ans6=int(input("\n Enter 1,2,3 or 4 as your answer:")) if ans6==4: print("\nYour Answer is Correct. Congratulations.") print("----------------------------------------") score= score+1000 print("Your score is",score) print("----------------------------------------") print("") else: print("\nSorry your answer is wrong. Better luck next time.") print("----------------------------------------") score= score+0 print("Your score is",score) print("----------------------------------------") print("") print("Q.7 Name the person who has spent the longest time in space.") print("1. Mike Hopkins") print("2. Valery Polyakov") print("3. Victor Glover") print("4. Soichi Noguchi") ans7=int(input("\n Enter 1,2,3 or 4 as your answer:")) if ans7==2: print("\nYour Answer is Correct. Congratulations.") print("----------------------------------------") score= score+1000 print("Your score is",score) print("----------------------------------------") print("") else: print("\nSorry your answer is wrong. Better luck next time.") print("----------------------------------------") score= score+0 print("Your score is",score) print("----------------------------------------") print("") print("Q.8 What was the name of the first Spacecraft on moon?") print("1. Vostok") print("2. Soyuz") print("3. Gagganyaan") print("4. Apollo 11") ans8=int(input("\n Enter 1,2,3 or 4 as your answer:")) if ans8==4: print("\nYour Answer is Correct. Congratulations.") print("----------------------------------------") score= score+1000 print("Your score is",score) print("----------------------------------------") print("") else: print("\nSorry your answer is wrong. Better luck next time.") print("----------------------------------------") score= score+0 print("Your score is",score) print("----------------------------------------") print("") print("Q.9 Which is the closest star to sun?") print("1. Alpha Centauri B") print("2. Alpha Centauri A") print("3. Proxima Centauri") print("4. Sirius A") ans9=int(input("\n Enter 1,2,3 or 4 as your answer:")) if ans9==3: print("\nYour Answer is Correct. Congratulations.") print("----------------------------------------") score= score+1000 print("Your score is",score) print("----------------------------------------") print("") else: print("\nSorry your answer is wrong. Better luck next time.") print("----------------------------------------") score= score+0 print("Your score is",score) print("----------------------------------------") print("") print("Q.10 True or False: Does the Blackhole have so strong gravitational pull that even light cannot escape it?") print("1. True") print("2. False") ans10=int(input("\n Enter 1 or 2 as your answer:")) if ans10==1: print("\nYour Answer is Correct. Congratulations.") print("----------------------------------------") score= score+1000 print("Your total score is",score) print("----------------------------------------") print("") else: print("\nSorry your answer is wrong. Better luck next time.") print("----------------------------------------") score= score+0 print("Your total score is",score) print("----------------------------------------") print("") print("Thank you for attending this quiz.") print("----------------------------------------")