ToSend 01-1
ToSend 01-1
Q6. Which of the following provides the weakest level of structural coverage?
A. Statement coverage
B. Decision coverage
C. Condition coverage
D. Multiple condition coverage
Correct Answer: A
Q10. Which input combinations will a knowledgeable tester MOST LIKELY use to uncover
potential errors when testing a surname field?
Q11. To test an input field that accepts a two‐digit day based on a particular month, which
data set demonstrates boundary value analysis?
Correct Answer: B
Q13. Consider the following sequence of events in the project, in which you work as a tester:
Correct Answer: B
How many test cases are necessary in order to achieve 100% decision coverage?
A. 4
B. 2
C. 1
D. 3
Correct Answer: B
Program X:
if A > B then
execute Function_A( )
else
execute Function_B ( )
endif
execute Function_C ( )
Program Y:
if D > E then
execute Function_D ( )
endif
execute Function_E ( )
execute Function_F ( )
A. The minimum number of test cases to achieve 100% statement coverage of Program X will
cause all functions to be executed only 1 time.
B. The minimum number of test cases to achieve 100% decision coverage of Program X will cause
all functions to be executed only 1 time.
C. The minimum number of test cases to achieve 100% statement coverage of Program Y will cause
all functions to be executed only 1 time.
D. The minimum number of test cases to achieve 100% decision coverage of Program Y will cause
all functions to be executed only 1 time.
Correct Answer: C
Q21. A test engineer finds a defect while testing. After the developer has fixed the defect, the
test engineer decides to re‐run a complete section of the tests. Which of the following is
correct?
A. The test engineer should not re‐run the tests, as they have already been run, and result recorded
B. The test engineer should re‐run the tests, in order to ensure that new defects have not been
introduced by the fix
C. The test engineer should re‐run the tests, because the defect show that the test cases need to be
updated
D. The test engineer should not re‐run the tests, they should be part of the developer tests.
Correct Answer: B
Q22. In which of the following test documents would you expect to find test exit‐criteria
described?
A. Requirements specification
B. Test design specification
C. Test plan
D. Project plan
Correct Answer: C
How many minimum test cases are required to cover 100% Statement coverage and Decision
coverage?
Correct Answer: A