Skip to content

Commit 8c0d237

Browse files
add expaination with answer
1 parent c97f976 commit 8c0d237

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

GAMES/Hacktoberfest Quiz/hacktoberfest_quiz.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def validate_question_one(self, question_one_value = ''):
6767
print('correct')
6868
else:
6969
print('Wrong Answer1')
70-
print('correct answer is python ')
70+
print('correct answer is python. ')
7171
return True if question_one_value.lower()=='python' else False
7272

7373
def validate_question_two(self, question_two_value):
@@ -76,7 +76,7 @@ def validate_question_two(self, question_two_value):
7676
print('correct')
7777
else:
7878
print('Wrong Answer2')
79-
print('correct answer is application of engineering principle to the design a software ')
79+
print('correct answer is application of engineering principle to the design a software. It is the Application of engineering principles to the design,development, and support of software and it helps to solve the challenges of low- quality software project. ')
8080
return True if question_two_value.lower()=='application of engineering principle to the design a software' else False
8181

8282
def validate_question_three(self, question_three_value):
@@ -85,7 +85,7 @@ def validate_question_three(self, question_three_value):
8585
print('correct')
8686
else:
8787
print('Wrong Answer2')
88-
print('correct answer is software development life cycle')
88+
print('correct answer is software development life cycle. it is a method for designing, developing, and testing high-quality softwarte.')
8989
return True if question_three_value.lower()=='software development life cycle' else False
9090

9191
def validate_question_four(self, question_four_value):
@@ -94,7 +94,7 @@ def validate_question_four(self, question_four_value):
9494
print('correct')
9595
else:
9696
print('Wrong Answer2')
97-
print('correct answer is requirement ananlysis')
97+
print('correct answer is requirement ananlysis, as based on it developer design and developed the software.')
9898
return True if question_four_value.lower()=='requirement ananlysis' else False
9999

100100
def evaluate(self):

0 commit comments

Comments
 (0)