InterviewSolution
 Saved Bookmarks
    				| 1. | 
                                    Explain overload resolution. | 
                            
| 
                                   
Answer»  When you call an overloaded function, the compiler determines the most appropriate definition . to use, by comparing the argument types you have used to callthe function with the parameter types specified in the definitions. The process of selecting the most appropriate overloaded function or operator is called overload resolution.  | 
                            |