write the program to demonstrate parameters and defining value in java
Answers
Answered by
0
Answer:n argument is a value passed to a function when the function is called. Whenever any function is called during the execution of the program there are some values passed with the function. These values are called arguments. An argument when passed with a function replaces with those variables which were used during the function definition and the function is then executed with these values. Let’s look at some examples for easy understanding:
Explanation:
Similar questions