InterviewSolution
Saved Bookmarks
| 1. |
What is any in C++?(a) STL container used to store a single value of any type(b) Exception class in C++(c) Fundamental type provided by C++(d) Template data typeThis question was posed to me in my homework.I want to ask this question from STL Container Any in section Class Hierarchies, Library & Containers of C++ |
|
Answer» RIGHT CHOICE is (a) STL CONTAINER used to STORE a single value of any type The explanation: Any is an STL container provided by C++ to store value or objects of any type. |
|