What does \"Overloaded\"/\"Overload\" mean in regards to programming?
It means that you are providing a function (method or operator) with the same name, but with a different signature. For example:
void doSomething(); int doSomething(string x); int doSomething(int a, int b, int c);