InterviewSolution
Saved Bookmarks
| 1. |
______________________ is the most common and least efficient debugging technique.(a) Brute force debugging(b) Backtracking(c) Cause elimination(d) Program slicingI got this question in an interview for internship.I'm obligated to ask this question of Mock Objects topic in portion Testing with Mock Objects of JUnit |
|
Answer» CORRECT OPTION is (a) Brute force debugging To EXPLAIN I would say: In brute force debugging, all possible combinations are used and studied. |
|