Which of the following is a MAJOR task of test planning?
Answer : A
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?
Answer : C
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?
Answer : C
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?
Answer : C
Given the following fragment of code, how many tests are required for 100% decision coverage?
If width > lenth then
Biggest_diension = width
If height > width then
biggest_dimension = height
end_if
else
Biggest_diension = length
If height>length
Then
Biggest_dimension = height
End_if
End_if
Answer : B
Who would USUALLY perform debugging activities?
Answer : A
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?
Answer : A