InterviewSolution
 Saved Bookmarks
    				| 1. | 
                                    Which of the following function(s) combination cannot be considered as overloaded function(s) in the given snippet?void print(char A,int B); // F1void printprint(int A, float B); // F2void Print(int P=10); // F3void printQ; // F4(a) F1, F2, F3, F4(b) F1, F2, F3(c) F1, F2, F4(d) F1, F3, F4 | 
                            
| 
                                   
Answer»  (d) F1, F3, F4  | 
                            |