Answer:
The answer to this question is given below in the explanation section.
Explanation:
This is the python program in the question that is:
def sum(n1,n2):
n=n1+n2
return n
The question is: write a function CALL that displays the return value on the screen.
So, the correct program is written below:
*********************************************************************
def sum(n1,n2):<em># it is function that define sum
</em>
<em> </em>n=n1+n2 <em># variable n that store the result of n1 and n2
</em>
<em> </em>return n <em># return the result
</em>
<em>
</em>
print(sum(3,5))<em># call the sum function with parameter 3 and 5
, it will print </em><em>8</em>
print(sum(4,101))
<em># call the sum function with parameter 4 and 101 it will print </em><em>105</em>
********************************************************************************
you can also store the sum result into another variable, because this function return the sum. So, you can store that return value into another vairable and using the print function, to print the value of this variable such as:
*****************************************************************************
def sum(n1,n2):<em># it is function that define sum
</em>
<em> </em> n=n1+n2<em> # variable n that store the result of n1 and n2
</em>
<em> </em> return n <em># return the result
</em>
<em>
</em>
result= sum(6,9) <em># store the sum result into another variable i.e result
</em>
print(result)<em># print the result variable value
</em>
*****************************************************************************