How do you test your code?

Answers were Sorted based on User's Feedback



How do you test your code? ..

Answer / lucy

1. Make sure outputs meet spec (by design)
2. Make sure the code can handle all posible inputs
3. Make sure the code has proper error handling
4. Test the time takes to get output (Does it meet
performance requirement)
5. Test how much CPU and memory it use
6. Test other possible factors may affect output(like
network issue, etc)

Is This Answer Correct ?    14 Yes 1 No

How do you test your code? ..

Answer / reejusri

We can test our code by :

1. Dry running
2. Unit testing
3. Ask someone else to input and run your program

Beyond that tester will come into picture.

Is This Answer Correct ?    9 Yes 3 No

How do you test your code? ..

Answer / chithra

using Compiler(Alt +F9)

Is This Answer Correct ?    7 Yes 5 No

How do you test your code? ..

Answer / saranya

by compiling (alt+f9) and
by executing(ctrl+f9)

Is This Answer Correct ?    6 Yes 4 No

Post New Answer

More C++ General Interview Questions

Explain the use of vtable.

0 Answers  


Why should you learn c++?

0 Answers  


What is a pointer how and when is it used?

0 Answers  


Explain the difference between c++ and java.

0 Answers  


What is ios flag in c++?

0 Answers  






What is setiosflags c++?

0 Answers  


Can the creation of operator** is allowed to perform the to-the-power-of operations?

0 Answers  


How would you obtain segment and offset addresses from a far address of a memory location?

0 Answers  


What is a c++ class?

0 Answers  


sizeof- is it functioning statically or dynamically?

2 Answers  


When does a name clash occur?

1 Answers  


What is the difference between function overloading and operator overloading?

0 Answers  


Categories