InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between An Argument And A Parameter? |
|
Answer» While DEFINING method, VARIABLES passed in the method are CALLED parameters. While using those methods, VALUES passed to those variables are called ARGUMENTS. While defining method, variables passed in the method are called parameters. While using those methods, values passed to those variables are called arguments. |
|