 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | 1. What is a function? Write a function to input two numbers and printthem? | 
| Answer» The addition() function TAKES two arguments because it will add two numbers. To add two numbers, FIRST of all, numbers should be passed to the addition() function. The addition() function takes two arguments, STORE it in PARAMETER variables, CALCULATE the sum of both numbers and returned results to the main function. | |