Question 1
Question
Which factors contribute to humans making mistakes that can lead to faulty software? (K2)
I. Setting aggressive schedule
II. Integrating complex systems
III. Allocating adequate resources
IV. Failing to control changes
Answer
-
I and II are true; III and IV are false
-
II and IV are true; I and III are false
-
I, II and IV are true; III is false
-
I, II, and III are true; IV is false
Question 2
Question
How can software defects in future projects be prevented from reoccurring? (K1)
Answer
-
Creating documentation procedures and allocating resource contingencies
-
Asking programmers to perform a thorough and independent testing
-
Combining levels of testing and mandating inspections of all documents
-
Documenting lessons learned and determining the root cause of problems
Question 3
Question
Which of the following are USUALLY stated as testing objectives? (K2)
I. Finding defects in the software
II. Reducing maintenance costs
III. Confirming that the system works
IV. Assessing the quality of the software
V. Meeting schedule milestones.
Answer
-
I and II
-
I, III, and IV
-
II, IV, and V
-
III and IV
Question 4
Question
Which test approach uses all combinations of input values and preconditions? (K1)
Answer
-
Component testing
-
Error guessing
-
Keyword driven testing
-
Exhaustive testing
Question 5
Question
Which of the following is a KEY test control task? (K1)
Answer
-
Initiating corrective actions
-
Determining the scope
-
Implementing the test policy
-
Scheduling test implementation
Question 6
Question
Which of the following is a MAJOR task when evaluating the exit criteria? (K!)
Answer
-
Creating test suites and cases for efficient execution
-
Writing a test summary report for stakeholders
-
Handing the testware to the maintenance organisation
-
Identifying any required infrastructure and tools
Question 7
Question
What principles do 'avoiding author bias' and 'communicating problem constructively' represent? (K2)
Answer
-
Preventive testing and reactive testing
-
experience-based testing and interoperability testing
-
Independent testing and good interpersonal skills
-
Criticism avoidance and effective relationships
Question 8
Question
Which test may OPTIONALLY be included in the common type of the V-Model? (K1)
Question 9
Question
What is the difference between component testing and integration testing? (K2)
Answer
-
Component testing tests interfaces, integration testing searches for defects
-
Component testing searches for defects, integration testing tests interfaces
-
Developers perform component testing; testers perform integration testing
-
Testers perform component testing; users perform integration testing
Question 10
Question
Which test investigates both functional and non-functional system requirements? (K1)
Answer
-
Alpha testing
-
System testing
-
Acceptance testing
-
Confirmation testing
Question 11
Question
Which of the following can be tested as part of operational testing? (K1)
Answer
-
Component interaction
-
Probe effect
-
State transition
-
Disaster recovery
Question 12
Question
What is the KEY difference between black-box and white-box testing? (K2)
Answer
-
Black-box is functional; White box is structural
-
Black-box is functional; White-box in non-functional
-
Black-box has a wider statement coverage than White-box
-
Black-box can be performed only after White-box
Question 13
Question
Which test is usually run many times and generally evolve slowly? (K1)
Answer
-
Performance testing
-
Stress testing
-
Reliability testing
-
Regression testing
Question 14
Question
Which defects are OFTEN much cheaper to remove? (K1)
Answer
-
Usability defects found by customers
-
Defects in infrequently used functionality
-
Defects that were detected early
-
Minor defects that were found by users
Question 15
Question
Which statements correctly describe certain phases of a formal review? (K2)
Answer
-
Looking for defects occurs during the kick-off phase Fixing defects found happens during the rework phase
-
Personnel selection occurs during the planning phase Gathering metrics happens during the review meeting phase
-
Distributing documents occurs during the planning phase Personal review happens during the individual preparation phase
-
Personnel selection occurs during the planning phase Fixing defects found happens during the rework phase
Question 16
Question
Which defect can typically be discarded using a static analysis tool? (K1)
Answer
-
Inconsistencies in numerical calculations
-
Programming standards violations
-
Problems related to system usability
-
Internal and external system reliability
Question 17
Question
What consists of a set of input values, execution preconditions and expected results? (K1)
Question 18
Question
Which documents specify features to be tested, approach, and pass/fail criteria? (K2)
Answer
-
Test Plan and test design specification
-
Test plan and test case specification
-
Test procedure specification and test design specification
-
Test case specification and test procedure specification
Question 19
Question
Which technique is appropriate to test changes on old and undocumented functionalities of a system? (K3)
Question 20
Question
Which test design technique relies heavily on prior thorough knowledge of the system? (K1)
Answer
-
Data driven testing technique
-
Experience-based technique
-
White-box technique
-
Structure-based technique
Question 21
Question
Which set of test data demonstrates equivalence partitioning to check whether a customer is a teenager or not? (K3)
Answer
-
10, 15, and 19 years
-
13, 19, and 25 years
-
13, 16, and 19 years
-
12, 13, and 20 years
Question 22
Question
What technique would be MOST appropriate to check status changes based on certain events? (K1)
Answer
-
State transition
-
Equivalence partitioning
-
Boundary value analysis
-
Decision table
Question 23
Question
Using the diagram, which test suite will check for ALL valid state transitions using the LEAST effort? (K3)
Answer
-
S0 - S1- S2 - S4 - S1 - S4 - S1 - S2 - S3 - S1
-
S0 - S1 - S2 - S4 - S1 - S2 - S3 - S1
-
S0 - S1 - S4 - S1 - S2 - S3 - S1
-
S0 - S1 - S2 - S4 - S1 - S4 - S1 - S2 - S3
Question 24
Question
Using the diagram, which test suite will uncover invalid state transitions for employee status reporting software? (K3)
Answer
-
Prospective - Active - Resigned - Active - Terminated - Purged
-
Prospective - Active - On leave - Active - Resigned - Retired
-
Prospective - Active - Retired - Active - On leave - Purged
-
Prospective - Active - On leave - Active - Retired - Active
Question 25
Question
Which of the following assertions about code coverage are correct? (K2)
Answer
-
Statement coverage usually requires more test case suites
-
100% statement coverage guarantees 100% decision coverage
-
100% decision coverage implies 100% statement coverage
-
Decision tables cannot be used to list statement coverage values
Question 26
Question
How many test cases are needed to achieve 100% statement coverage? (k3)
if ( (temperature < 0 ) or
(temperature > 100) ) {
alert ("DANGER") ;
if ( (speed > 100 ) and ( load <= 50 ) ) {
speed = 50 ;
}
} else {
check = false ;
}
Question 27
Question
Using an error guessing test design technique to convert temperature (Celsius to Fahrenheit and Fahrenheit to Celsius), experienced testers will MOST LIKELY use which set of test data? (K3)
Answer
-
-1, 0, 89.6, and 212
-
-40, 37.78, and 100
-
-1, 0, 1, and 37.78
-
-40, 0, 32, and 100
Question 28
Question
By creating future tests based on the results of previous tests, a tester is demonstrating what type of informal test design technique? (K1)
Answer
-
Security testing
-
Non-functional testing
-
Exploratory testing
-
Interoperability testing
Question 29
Question
Which of the following are potential drawbacks of independence in testing? (K2)
01. Independent testers may feel they are not part of the development team
02. Developers may lose a sense of personal responsibility for quality
03. Project managers will not have as much control over the project
04. Customers may end up requesting features that are technically impossible
Answer
-
01 and 02
-
01, 02 and 03
-
03 and 04
-
01, 02, 03 and 04
Question 30
Question
Which tasks are performed by a test leader versus a tester? (K3)
S. Writing a project test strategy
T. Selecting tools to support testing
U. Preparing and acquiring data
V. Scheduling tests
Answer
-
Test leader: S and V; Tester: T and U
-
Test leader: S, T and V; Tester: U
-
Test leader: S, U and V; Tester: T
-
Test leader: S; Tester: T, U and V
Question 31
Question
Which document specifies the sequence of test execution? (K1)
Question 32
Question
Stochastic testing is an example of which test approach or strategy? (K1)
Answer
-
Model-based
-
Analytical
-
Methodical
-
Heuristic
Question 33
Question
Which sections are included as part of the test summary report? (K2)
W. Variances
X. Comprehensive assessment
Y. Evaluation
Z. Summary of activities
Answer
-
W, X and Y
-
W, X, Y and Z
-
W and X
-
W, x and Z
Question 34
Question
Which is a potential product risk factor? (K3)
Answer
-
Failure of third party vendor
-
Training issues
-
Problems requirements definition
-
Poor software functionality
Question 35
Question
Based on the IEEE standard for software test documentation (IEEE std 829-1998), in which sections of the test incident report should the following items be recorded? (K2)
Sections
a) Test incident report identifier
b) Summary
c) Incident description
d) Impact
Items
1. Impact on test plans
2. Unique identifier
3. Anomalies
4. Procedure step
5. Environment
6. References to other relevant documents
Answer
-
a: 2; b: 4; c: 1,3 and 5; d: 6
-
a: 2; b: 3; c: 4,5 and 6; d: 1
-
a: 2; b: 6; c: 3,4 and 5; d: 1
-
a: 2; b: 1; c: 3, 4 and 5; d: 6
Question 36
Question
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? (K1)
a) Test summary and report identifier
b) Comprehensive assessment
c) Summary of results
d) Evaluation
e) Observers
f) Approvals
Answer
-
a, b, c, d and e
-
a, b, c, e and f
-
a, c, d, e, and f
-
a, b, c, d and f
Question 37
Question
What is the name of a temporary software component that is used to call another component for testing purposes? (K1)
Answer
-
Domain
-
Use case
-
Stub
-
Driver
Question 38
Question
Which of the following is a potential risk in using test support tools? (K1)
Answer
-
Underestimating the effort needed to maintain the test assets
-
Losing access to important testing information when needed
-
Relying too much on qualitative and quantitative assessments
-
Lowering the morale of the test team because of repetition
Question 39
Question
How are (a) static analysis tools and (b) performance testing tools different? (K2)
Answer
-
A = helps in enforcing coding standards B = tests system performance
-
A = analyse security vulnerabilities B = measures the effectiveness of test cases
-
A = prepares codes prior to testing B = prepares code prior to stress testing
-
A = highlights unreachable conditions B = improves system performance
Question 40
Question
Which of the following is a potential pilot project objective when introducing a test support tool in to an organisation? K1)
Answer
-
Measuring the satisfaction of management for staying within scope
-
Assessing whether the benefits will be achieved at reasonable cost
-
Receiving compliments from the users on the aesthetic aspects of the tool
-
Reducing the amount of overtime need to finish the project on time