Write about a nested class and mention its use?
Explain RAII (Resource Acquisition Is Initialization).
What is the most common mistake on c++ and oo projects?
the maximum length of a character constant can be a) 2 b) 1 c) 8
What is a tree in c++?
template<class T, class X> class Obj { T my_t; X my_x; public: Obj(T t, X x) : my_t(t), my_x(x) { } }; Referring to the sample code above, which one of the following is a valid conversion operator for the type T? a) T operator T () { return my_t; } b) T operator(T) const { return my_t; } c) operator(T) { return my_t; } d) T operator T (const Obj &obj) { return obj.my_t; } e) operator T () const { return my_t; }
What is abstract class in c++?
What are the benefits of pointers?
What is difference between c++ 11 and c++ 14?
What are the main characteristics of C++ as a programming language?
What is the full form of stl in c++?
What is the best it certification?
How do you test your code?