Question: b. Find the output of the following script in Python. Note: All statements are valid. i. def display_grade(s): if s >= 50: print Grade: Pass

b. Find the output of the following script in Python. Note: All statements are valid.

i.

def display_grade(s): if s >= 50: print "Grade: Pass" print "Grade: Fail" display_grade(50)

ii.

def display_grade(s): if s >= 50: return "Grade: Pass" return "Grade: Fail" print display_grade(50)

iii.

def display_grade(s): if s >= 50: return "Grade: Pass" print "Grade: Fail" print display_grade(50)

iv.

def display_grade(s): if s >= 50: return "Grade: Pass" if s <= 50: return "Grade: Fail" print display_grade(50)

v.

def display_grade(s): if s > 50: return "Grade: Pass" if s < 50: return "Grade: Fail" print display_grade(50)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!