1.

What will be the output of the following code? value = 50def display(N):global value value = 25 if N%7==0: value = value + Nelse:value = value - N print(value, end="#") display(20) print(value) a. 50#50 b. 50#5 c. 50#30 d. 5#50#

Answer»

Answer is b. 50#5



Discussion

No Comment Found

Related InterviewSolutions