Answer:
easy to learn is one similarity
longer experience needed is on difference
HOPE THIS HELPS .......
When permanent magnets of a motor are replaced with more powerful ones, the motor rotation will increase. This is because there is more electricity being generated.
Answer:
The value enter in the function calling is called argument. Argument passed to function.
The variable declare in the function to capture the pass value from the calling function is called parameters.
Explanation:
Argument is used in the calling function and parameter is used in the defining the function.
for example:
//create the function
int count(parameter_1, parameter_2,.....)
{
statement;
}
count(argument_1. argument_1,.....); //call the function