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 one dimensional array in c++?
Explain RAII (Resource Acquisition Is Initialization).
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
What is the difference between an array and a list?
Differentiate between realloc() and free().
Why do we use classes in programming?
what is a class? Explain with an example.
Difference between delete and free.
What is the difference between equal to (==) and assignment operator (=)?
Name the debugging methods that are used to solve problems?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
Which operator cannot overload?