Concept Flow - Method overloading
Start
Call method with arguments
Check method signatures
Match found?
No→Error: No method found
Yes
Execute matched method
Return result
End
When a method is called, Java looks for the method with the matching name and argument types, then runs that method.
