1. ► string in C++ is just a char array with NULL termination
2. ► Which of the following function can be used for locating a subtring
3. ► Like set, bitset also has iterators to find all the bits
4. ► Callbacks help to process objects without being part of corresponding classes
5. ► Template compilation is slow because of:
6. ► Which of the following classes is output stream in C++
7. ► Operator overloading allows to write common operator definition of user defined classes
8. ► Unittests are typically done at class level
9. ► While creating an object of a derived class, only its constructor is called. Base class has no role to play.
10. ► Operator ‘+’ is allowed on C++ string
11. ► Operator overloading works only on pass by value
12. ► list<T>::empty is more efficient than list<T>::size
13. ► stringstream can be used to insert values of various basic types into a string
14. ► string comparison is as efficient as number comparison
15. ► Templates are used for making a function or a class type agnostic