InterviewSolution
Saved Bookmarks
| 1. |
Pick out the correct method in the c++ standard library algorithm.(a) mismatch(b) maximum(c) minimum(d) maxmatchI got this question during an internship interview.This intriguing question comes from Standard Library Algorithms topic in chapter Algorithms, Objects & Iterators in C++ of C++ |
|
Answer» RIGHT OPTION is (a) mismatch Best EXPLANATION: It is a method in the search OPERATION in standard library algorithms. |
|