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 are shallow and deep copy?
How can I disable the "echo" feature?
Explain all the C++ concepts using examples.
Define pure virtual function?
What do you mean by pure virtual functions in C++? Give an example?
Do vectors start at 0 c++?
What is meant by reference variable in C++?
What is problem with overriding functions?
Differences between private, protected and public and give examples.
What is an operator function? Describe the function of an operator function?
What is the stack?
How to get the current position of the file pointer?