give me an example for testing a program showing the test path
.show how the test is important and complex.


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

Post New Answer

More C++ General Interview Questions

class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable

1 Answers  


Is it possible to provide special behavior for one instance of a template but not for other instances?

0 Answers  


What are the defining traits of an object-oriented language?

0 Answers  


Please explain the reference variable in c++?

0 Answers  


What is the extension of c++?

0 Answers  






Will this c++ program execute or not?

0 Answers  


What are c++ tokens?

0 Answers  


Why can you not make a constructor as const?

3 Answers  


What is overloading unary operator?

0 Answers  


How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever

17 Answers   Datavance, Quark, VEL, Wipro,


What is the Difference between "vector" and "array"?

15 Answers   Covansys, Gambit, TCS, Wipro,


Write about an iterator class?

0 Answers  


Categories