Create a function that can accept two arguments name and age and print its value Write a function calculation() such that it can accept two variables and calculate the addition and subtraction of it. And also it must return both addition and subtraction in a single return call Create a function showEmployee() in such a way that it should accept employee name, and it’s salary and display both, and if the salary is missing in function call it should show it as 9000 Create an inner function to calculate the addition in the following way Create an outer function that will accept two parameters a and b Create an inner function inside an outer function that will calculate the addition of a and b At last, an outer function will add 5 into addition and return it Write a program in to check whether a number is positive, negative or zero. Write a program to find Sum of cubes of first N Even numbers. Write a program in to compute the total and average of four numbers Write a program using function which accept two integers as an argument and return its sum. Call this function and print the results in main( ) Write a function to calculate the factorial value of any integer as an argument. Call this function from main( ) and print the results in main( ). Write a function that receives two numbers as an argument and display all prime numbers between these two numbers. Call this function from main( ). Raising a number to a power p is the same as multiplying n by itself p times. Write a function called power that takes two arguments, a double value for n and an int value for p, and return the result as double value. Use default argument of 2 for p, so that if this argument is omitted the number will be squared. Write the main function that gets value from the user to test power function. Write a function called zero_small() that has two integer arguments and sets the smaller of the two numbers to 0. Write the main program to access the function.