Given the following decision table:
Which of the following test cases and expected results is VALID?
A. 23 year old in insurance class A Premium is 90 and excess is 2,500.
B. 51 year old in insurance class C Premium is 70 and excess is 500.
C. 31 year old in insurance class B Premium is 90 and excess is 2,500.
D. 43 year old in insurance class C Premium is 70 and excess is 1,000.
For which of the following would a static analysis tool be MOST useful?
A. Supporting reviews.
B. Validating models of the software.
C. Testing code executed in a special test harness.
D. Enforcement of coding standards.
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.
Who would USUALLY perform debugging activities?
A. Developers.
B. Analysts.
C. Testers.
D. Incident Managers.
What is the MAIN benefit of designing tests early in the life cycle?
A. It is cheaper than designing tests during the test phases.
B. It helps prevent defects from being introduced into the code.
C. Tests designed early are more effective than tests designed later.
D. It saves time during the testing phases when testers are busy.
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.
Which type of test design techniques does the following statement best describe? A procedure to derive test cases based on the specification of a component.
A. Black Box Techniques.
B. White Box Techniques.
C. Glass Box Techniques.
D. Experience Based Techniques.
Some tools are geared more for developer use. For the 5 tools listed, which statement BEST details those for developers.
A. i, iii. and iv. are more for developers.
B. ii. and iv. are more for developers.
C. ii, iii. and iv. are more for developers.
D. ii. and iii. are more for developers.
A thermometer measures temperature in whole degrees only.
If the temperature falls below 18 degrees, the heating is switched off. It is switched on again when the temperature reaches 21 degrees.
What are the best values in degrees to cover all equivalence partitions?
A. 15, 19 and 25.
B. 17, 18, and 19.
C. 18, 20 and 22.
D. 16, 26, and 32.
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.