Which of the following is MOST characteristic of specification based (black-box) techniques?
C
Which of the following is a MAJOR task of test implementation and execution?
B
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?
C
What determines the level of risk?
D
What is beta testing?
B
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
Some tools are geared more for developer use. For the 5 tools listed, which statement BEST details
those for developers.
B
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
Which activity in the fundamental test process creates test suites for efficient test execution?
A
You have designed test cases to provide 100% statement and 100% decision coverage for the
following fragment of code.
If width > length then
Biggest_dimension = wifth
Else
Biggest_dimenstion = length
End_if
The Following has been added to the bottom of the code fragment above.
Print biggest dimension is & biggest_dimension
Print width: & width
Print Length: & length
How many more test cases are required?
C