What are shallow and deep copies?


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

Post New Answer

More C++ General Interview Questions

What is c++ flowchart?

0 Answers  


What are the operators 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,


Do you know what are pure virtual functions?

0 Answers  


When do we run a shell in the unix system?

0 Answers  






What is the C-style character string?

0 Answers  


What do you mean by ‘void’ return type?

0 Answers  


What is a multiset c++?

0 Answers  


Write about c++ storage classes?

0 Answers  


What is the use of map in c++?

0 Answers  


What is the auto keyword good for in c++?

0 Answers  


When we use Abstract Class and when we use Interface?where we will implement in real time?

0 Answers  


Categories