Exhibit:
Which of the activities in the exhibit should be performed during the selection and implementation of a testing tool?
Answer : D
Which of the following would you NOT usually find on a software incident report?
Answer : C
When should configuration management procedures be implemented?
Answer : A
What is the KEY difference between preventative and reactive approaches to testing?
Answer : B
Which of the following is TRUE?
Answer : A
Which of the following BEST describes the difference between an inspection and a walkthrough?
Answer : B
Given the following fragment of code, how many tests are required for 100% decision coverage?
discount = 0
order_quantity=0
real order_quantity
if order_quantity >=20 then
discount = 0.05
if order_quantity >=100 then
discount = 0.1
end_if
end_if
Answer : A