Arguments are values that are passed into a function when it is called. They allow us to provide input to the function and customize its behavior.
Parameters are variables defined in a function's declaration. They act as placeholders for the arguments that will be passed into the function.
Return Value: The return value is the result or output of a function after it has been executed.
Function Call: A function call is when we use the name of a function along with parentheses to execute or invoke that function.