A wholesaler sells printer cartridges.
The minimum order quantity is 5.
There is a 20% discount for orders of 100 or more printer cartridges.
You have been asked to prepare test cases using various values for the number of printer cartridges ordered.
Which of the following groups contain three test inputs that would be generated using Boundary Value Analysis?
A. 5, 6, 20
B. 4, 5, 80.
C. 4, 5, 99.
D. 1, 20, 100.
Exhibit:
Which of the items displayed in the exhibit are characteristic of regression testing.
A. ii, iv.
B. ii, iii.
C. i, iii, iv.
D. iii.
Which of the following is a MAJOR task of test planning?
A. Scheduling test analysis and design tasks.
B. Initiating corrective actions.
C. Monitoring progress and test coverage.
D. Measuring and analyzing results.
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
A. 3.
B. 4.
C. 5.
D. 2.
Exhibit:
Which of the combinations displayed in the exhibit correctly describes a valid approach to component testing:
A. i and ii.
B. i, ii and iii
C. iii.
D. ii and iv
Which of the following is a benefit of test independence?
A. It does not require familiarity with the code.
B. It is cheaper than using developers to test their own code.
C. It avoids author bias in defining effective tests.
D. Testers are better at finding defects than developers.
What is beta testing?
A. Testing performed by potential customers at the developers location
B. Testing performed by potential customers at their own locations.
C. Testing performed by product developers at the customer's location.
D. Testing performed by product developers at their own locations.
What determines the level of risk?
A. The cost of dealing with an adverse event if it occurs.
B. The probability that an adverse event will occur.
C. The amount of testing planned before release of a system.
D. The likelihood of an adverse event and the impact of the event.
Given the following state transition diagram
Which of the following series of state transitions contains an INVALID transition which may indicate a fault in the system design?
A. Login Browse Basket Checkout Basket Checkout Pay Logout.
B. Login Browse Basket Checkout Pay Logout.
C. Login Browse Basket Checkout Basket Logout.
D. Login Browse Basket Browse Basket Checkout Pay Logout.
Which of the following is a MAJOR task of test implementation and execution?
A. Measuring and analysing results.
B. Reporting discrepancies as incidents.
C. Identifying test conditions or test requirements.
D. Assessing if more tests are needed.