InterviewSolution
Saved Bookmarks
| 1. |
While testing a product designed to mark exams, a tester determines that all scores between 90 to 100 yields a grade of A, but scores below 90 will not. This analysis is known as:(a) Boundary Value Analysis(b) Equivalence Partitioning(c) Positive Analysis(d) Negative AnalysisI had been asked this question during an internship interview.I need to ask this question from Stubs in chapter Coarse-grained Testing with Stubs of JUnit |
|
Answer» CORRECT CHOICE is (b) Equivalence PARTITIONING Best explanation: The RANGE is broken down and each range is tested. Hence, it is equivalence partitioning. |
|