InterviewSolution
Saved Bookmarks
| 1. |
What is the header file used for declaring the standard library algorithms?(a) container(b) algorithm(c) library(d) iteratorThe question was posed to me during an internship interview.Question is taken from Standard Library Algorithms in division Algorithms, Objects & Iterators in C++ of C++ |
|
Answer» RIGHT choice is (b) algorithm Easiest explanation - C++ Standard Library, algorithms are components that PERFORM ALGORITHMIC operations on containers and other sequences. For this OPERATION, We have to USE |
|