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):# it is function that define sum
n=n1+n2 # variable n that store the result of n1 and n2
return n # return the result
print(sum(3,5))# call the sum function with parameter 3 and 5 , it will print 8
print(sum(4,101))
# call the sum function with parameter 4 and 101 it will print 105
********************************************************************************
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):# it is function that define sum
n=n1+n2 # variable n that store the result of n1 and n2
return n # return the result
result= sum(6,9) # store the sum result into another variable i.e result
print(result)# print the result variable value
*****************************************************************************
If you would like to compare information on two different Web pages, you should _____.
scroll through the pages
the home page
use tabs
organize bookmarks
Answer:
Use Tabs
Explanation:
I had this lesson on odyessy ware and this was right the other guy is wrong
Answer:
Use Tabs is also correct on Edge nuity
Explanation:
i have Keyboarding and Apps
answer this now
and thanks
Answer:
the process of burning something
Answer:
Option D) the process of burning something
Explanation:
Combustion, or burning, is a high-temperature exothermic redox chemical reaction between a fuel and an oxidant, usually atmospheric oxygen, that produces oxidized, often gaseous products, in a mixture termed as smoke.