InterviewSolution
Saved Bookmarks
| 1. |
What is meant by standard c++ library?(a) It is the collection of class definitions for standard data structures and a collection of algorithms(b) It is a header file(c) Collection of algorithms(d) Step by step processThe question was posed to me in an interview.My doubt is from Standard Library Design in division Class Hierarchies, Library & Containers of C++ |
|
Answer» CORRECT option is (a) It is the collection of CLASS definitions for standard data structures and a collection of algorithms Explanation: It is the collection of class definitions for standard data structures. This part of the LIBRARY was DERIVED from the Standard Template Library. |
|