How do you test your code?
Answers were Sorted based on User's Feedback
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 |
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 |
Answer / saranya
by compiling (alt+f9) and
by executing(ctrl+f9)
| Is This Answer Correct ? | 6 Yes | 4 No |
What is endianness?
What is the basic structure of a c++ program?
Can you please explain the difference between static and dynamic binding of functions?
Explain what happens when a pointer is deleted twice?
What is the use of ::(scope resolution operator)?
Differentiate between the message and method?
What does namespace mean in c++?
When volatile can be used?
How to construct muliton object
Discuss the possibilities related to the termination of a program before entering the mainq method?
Can user-defined object be declared as static data member of another class?
What is a driver program?