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 |
Is the declaration of a class its interface or its implementation?
write a program that will produce the ff. output. "what fruit will you buy? 1)apple 2)orange 3)mango ENTER CHOICE (1,2 or 3)> HOW MANY WILL YOU BUY?> THAT WILL COST XX.XX
Is c++ a good beginners programming language?
Write about an iterator class?
What is the difference between std::vector and std::list
Why ctype h is used in c++?
why and when we can declar member fuction as a private in the class?
What is c++ try block?
What is c++ array?
how can u create a doubly linked list with out using pointers?
What do you mean by function pointer?
Explain the scope of resolution operator.