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 the difference between multiple and multilevel inheritance in c++?
What is the difference between function overloading and operator overloading?
What is array give example?
Can you please explain the difference between overloading and overriding?
What is the difference between a pointer and a link in c ++?
What is the difference between cin.read() and cin.getline()?
If all is successful, what should main return a) 0 b) 1 c) void
What is boyce codd normal form in c++?
Is oops and c++ same?
How const functions will be treated by compiler?
What is size of empty class object
When is a template a better solution than a base class?