When used as a parameter a variable allows a function to acc
     When used as a parameter, a  variable allows a function to access and modify the original argument passed to it.  static  value  reference  floating-point  default value  A function can have zero to many parameters, and it can have  return value(s).  zero to many  either zero or one  either one or two  a maximum of ten  no  A function other than the main function is exercise  When its first defined  when its function prototype is encountered  only once  when the main function finishes executing  whenever it is called  A function  includes the statements that make up the function.  definition  prolotype  call  heading  parameter 
  
  Solution
Question 5)Ans) reference
Reason:
If we passed the reference to the function .If any operations performed on it will be returned back to the caller of the function.
Question 6)Ans) Either Zero or one
Reason: every function will return zero (void )or one number of return value.We cannot return more than 1 return value.
Question 7)Ans) When ever it is called
Reason:The function will be called wher ever we call it from main() function .We can call function any number of times.
Question 8)Ans) Definition
Reason:
Function definition contains a group of statements which contains logic to perform a task
___________Thank You

