Question 106
The business has asked for a weekly progress report. Which of the following would be appropriate as a measure of test coverage? 2 credits
Question 107
Complete statement and branch coverage means..?
Question 108
Which of the following are most characteristic of structure-based testing?
(i)
Information about how the software is constructed is used to derive test cases.
(ii)
Statement coverage and/or decision coverage can be measured for existing test cases.
(iii) The knowledge and experience of people are used to derive test cases.
(iv)
Test cases are derived from a model or specification of the system.
Question 109
A test assessment has been carried out using the selected model as a reference framework. A number of recommendations have been identified and you are asked to prioritize them. Based on your knowledge of the project, you are expecting severe resistance to change. Which of the following would be the most important selection criterion for defining the priority of the recommendations?
Question 110
Consider the following pseudo code:
1. Begin
2. Input X, Y
3. If X > Y
4. __Print (X, 'is greater than', Y)
5. Else
6. __Print (Y, is greater than or equal to', X)
7. EndIf
8. End
What is the minimum number of test cases required to guarantee both 100% statement coverage and
100% decision coverage?
