Write about a nested class and mention its use?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Explain RAII (Resource Acquisition Is Initialization).

3 Answers  


What is the most common mistake on c++ and oo projects?

0 Answers  


the maximum length of a character constant can be a) 2 b) 1 c) 8

0 Answers  


What is a tree in c++?

0 Answers  


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; }

1 Answers   Quark,


What is abstract class in c++?

0 Answers  


What are the benefits of pointers?

0 Answers  


What is difference between c++ 11 and c++ 14?

0 Answers  


What are the main characteristics of C++ as a programming language?

1 Answers  


What is the full form of stl in c++?

0 Answers  


What is the best it certification?

0 Answers  


How do you test your code?

4 Answers   Microsoft,


Categories