Q. 1: How many test cases are required to cover 100% 0 - switch coverage respectively from
X2?
A. 4
B. 1
C. 3
D. 2 - answer-D
Q. 2: From a Testing perspective, what are the MAIN purposes of Configuration Management?:
i) Identifying the version of software under test.
ii) Controlling the version of testware items.
iii) Developing new testware items.
iv) Tracking changes to testw are items.
v) Analysing the need for new testware items.
A. ii, iv and v.
B. ii, iii and iv,
C. i, ii and iv.
D. i, iii and v. - answer-C
Q. 3: 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. - answer-A
Q. 4: Based on the IEEE Standard for Software Test Documentation (IEEE Std 829 - 1998),
which of the following sections are part of the test summary report?
a) Summary
b) Test incident report identifier
c) Test deliverables
d) Risks and contingencies
e) Variances
f) Approvals
g) Output specifications
A. a, e and f
B. a, c and d
C. a, b and f
D. a, d and e - answer-A
,Q. 5: Which is a potential product risk factor?
A. Failure of third party vendor
B. Training issues
C. Problems requirements definition
D. Poor software functionality - answer-D
Q. 6: Who typically use static analysis tools?
A. Customers and users
B. Developers and designers
C. Business and systems analysts
D. System and acceptance testers - answer-B
Q. 7: Who would USUALLY perform debugging activities?
A. Developers.
B. Analysts.
C. Testers.
D. Incident Managers - answer-A
Q. 8: Which of the following would you NOT usually find on a software incident report?
A. The name and / or organisational position of the person raising the problem.
B. Version of the Software Under Test.
C. Suggestions as to how to fix the problem.
D. Actual and expected results. - answer-C
Q. 9: Which of the following defines the expected results of a test?
A. Test case specification.
B. Test design specification.
C. Test procedure specification.
D. Test results. - answer-D
Q. 10: Some tools are geared more for developer use. For the 5 tools listed, which statement
BEST details those for developers
i) Performance testing tools.
ii) Coverage measurement tools.
iii) Test comparators.
iv) Dynamic analysis tools.
v) Incident management tools.
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. - answer-B
Q. 11: Which of the following is correct?
A. Impact analysis assesses the effect on the system of a defect found in regression testing.
B. Impact analysis assesses the effect of a new person joining the regression test team.
C. Impact analysis assesses whether or not a defect found in regression testing has been fixed
correctly.
D. Impact analysis assesses the effect of a change to the system to determine how much
regression testing to do. - answer-D
Q. 12: In software testing what is the main purpose of exit criteria?
A. To enhance the security of the system
B. To prevent the endless loops in code.
C. To swerve as an alternative or "Plan-B"
D. To define when to stop testing - answer-D
Q. 13: 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?
Exhibit:
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. - answer-C
Q. 14: Which of the following is a KEY test closure task?
A. Ensuring proper environment setup
B. Writing a test summary report
C. Assessing the need for additional tests
D. Finalizing and archiving testware. - answer-D
Q. 15: 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. - answer-B
, Q. 16: Given the following fragment of code, how many tests are required for 100% decision
coverage?
if width > length
then
biggest_dimension = width
if height > width
then
biggest_dimension = height
end_if
else
biggest_dimension = length
if height > length
then
biggest_dimension = height
end_if
end_if
A. 3
B. 4
C. 2
D. 1 - answer-B
Q. 17: 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 = width
else
biggest_dimension = 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?
A. One more test case will be required for 100 % decision coverage.
B. Two more test cases will be required for 100 % statement coverage, one of which will be used
to provide 100% decision coverage.