Small MCQ App Creation in Python
#created by satyam sir
print('Welcome to ITCI Quiz')
answer=input('Are you ready to play the Quiz ? (yes/no) :')
score=0
total_questions=3
if answer.lower()=='yes':
answer=input('Question 1: What is extension of python programming language?')
if answer.lower()=='.py':
score += 1
print('correct')
else:
print('Wrong Answer')
answer=input('Question 2: Who is father of HTML? ')
if answer.lower()=='tim bearners lee':
score += 1
print('correct')
else:
print('Wrong Answer :(')
answer=input('Question 3: What is extension of web page?')
if answer.lower()=='.html' or '.htm':
score += 1
print('correct')
else:
print('Wrong Answer :(')
print('Thankyou for Playing this small quiz game, you attempted',score,"questions correctly!")
mark=(score/total_questions)*100
print('Marks obtained:',mark)
print("\n")
print('visit my site to learn more:- www.itcicomputerhardoi.blogspot.com')