The mechanism of selecting the most appropriate method for a particular call from the set of overloaded methods is called ______.

  • Function Overriding
  • Function Resolution
  • Method Overloading
  • Method Resolution
The process of selecting the most appropriate method from a set of overloaded methods is called 'Method Resolution' or 'Function Resolution.' This is determined by the number and types of arguments in the function call. It's a crucial concept in polymorphism and method overloading in C++.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *