Question 1
Question
Which of the following statements describe a valid test objective?
Answer
-
To prove that there are no unfixed defects in the system under tes
-
To prove that there will be no failures after the implementation of the system into production
-
To reduce the risk level of the test object and to build confidence in the quality level
-
To verify that there are no untested combinations of inputs
Question 2
Question
Which of the following options shows an example of test activities that contribute to success?
Answer
-
Having testers involved during various software development lifecycle (SDLC) activities will
help to detect defects in work products
-
Testers try not to disturb the developers while coding, so that the developers write better
code
-
Testers collaborating with end users help to improve the quality of defect reports during
component integration and system testing
-
Certified testers will design much better test cases than non-certified testers
Question 3
Question
You have been assigned as a tester to a team producing a new system incrementally. You have
noticed that no changes have been made to the existing regression test cases for several iterations
and no new regression defects were identified. Your manager is happy, but you are not. Which
testing principle explains your skepticism?
Question 4
Question
You work in a team that develops a mobile application for food ordering. In the current iteration the
team decided to implement the payment functionality.
Which of the following activities is a part of test analysis?
Answer
-
Estimating that testing the integration with the payment service will take 8 person-days
-
Deciding that the team should test if it is possible to properly share payment between many users
-
Using boundary value analysis (BVA) to derive the test data for the test cases that check
the correct payment processing for the minimum allowed amount to be paid
-
Analyzing the discrepancy between the actual result and expected result after executing a
test case that checks the process of payment with a credit card, and reporting a defect
Question 5
Question
Which of the following factors (i-v) have SIGNIFICANT influence on the test process?
i. The SDLC
ii. The number of defects detected in previous projects
iii. The identified product risks
iv. New regulatory requirements forcing
v. The number of certified testers in the organization
Answer
-
i, ii have significant influence; iii, iv, v have not
-
i, iii, iv have significant influence; ii, v have not
-
ii, iv, v have significant influence; i, iii have not
-
iii, v have significant influence; i, ii, iv have not
Question 6
Question
Which TWO of the following tasks belong MAINLY to a testing role?
Answer
-
Configure test environments
-
Maintain the product backlog
-
Design solutions to new requirements
-
Create the test plan
-
Report on achieved coverage
Question 7
Question
Which of the following skills (i-v) are the MOST important skills of a tester?
i. Having domain knowledge
ii. Creating a product vision
iii. Being a good team player
iv. Planning and organizing the work of the team
v. Critical thinking
Answer
-
ii and iv are important; i, iii and v are not
-
i, iii and v are important; ii and iv are not
-
i, ii and v are important; iii and iv are not
-
iii and iv are important; i, ii and v are not
Question 8
Question
How is the whole team approach present in the interactions between testers and business
representatives?
Answer
-
Business representatives decide on test automation approaches
-
Testers help business representatives to define test strategy
-
Business representatives are not part of the whole team approach
-
Testers help business representatives to create suitable acceptance tests
Question 9
Question
Consider the following rule: “for every SDLC activity there is a corresponding test activity”. In which
SDLC models does this rule hold?
Answer
-
Only in sequential SDLC models
-
Only in iterative SDLC models
-
Only in iterative and incremental SDLC models
-
In sequential, incremental, and iterative SDLC models
Question 10
Question
Which of the following statements BEST describes the acceptance test-driven development (ATDD)
approach?
Answer
-
In ATDD, acceptance criteria are typically created based on the given/when/then format
-
In ATDD, test cases are mainly created at component testing and are code-oriented
-
In ATDD, tests are created, based on acceptance criteria to drive the development of the
related software
-
in ATDD, tests are based on the desired behavior of the software, which makes it easier for
team members to understand them
Question 11
Question
Which of the following is NOT an example of the shift left approach?
Answer
-
Reviewing the user requirements before they are formally accepted by the stakeholders
-
Writing a component test before the corresponding code is written
-
Executing a performance efficiency test for a component during component testing
-
Writing a test script before setting up the configuration management process
Question 12
Question
Which of the arguments below would you use to convince your manager to organize retrospectives
at the end of each release cycle?
Answer
-
Retrospectives are very popular these days and clients would appreciate it if we added them
to our processes
-
Organizing retrospectives will save the organization money because end user
representatives do not provide immediate feedback about the product
-
Process weaknesses identified during the retrospective can be analyzed and serve as a to
do list for the organization’s continuous process improvement program
-
Retrospectives embrace five values including courage and respect, which are crucial to
maintain continuous improvement in the organization
Question 13
Question
Which types of failures (1-4) fit which test levels (A-D) BEST?
1. Failures in system behavior as it deviates from the user’s business needs
2. Failures in communication between components
3. Failures in logic in a module
4. Failures in not correctly implemented business rules
A. Component testing
B. Component integration testing
C. System testing
D. Acceptance testing
Answer
-
1D, 2B, 3A, 4C
-
1D, 2B, 3C, 4A
-
1B, 2A, 3D, 4C
-
1C, 2B, 3A, 4D
Question 14
Answer
-
Only 4, 7, 8, 9
-
Only 5, 7
-
Only 4, 6, 8, 9
-
Only 5, 6
Question 15
Question
Which of the following is NOT a benefit of static testing?
Answer
-
Having less expensive defect management due to the ease of detecting defects later in the
SDLC
-
Fixing defects found during static testing is generally much less expensive than fixing defects
found during dynamic testing
-
Finding coding defects that might not have been found by only performing dynamic testing
-
Detecting gaps and inconsistencies in requirements
Question 16
Question
Which of the following is a benefit of early and frequent feedback?
Answer
-
It improves the test process for future projects
-
It forces customers to prioritize their requirements based on agreed risks
-
It is the only way to measure the quality of changes
-
It helps avoid requirements misunderstandings
Question 17
Answer
-
Informal review
-
Walkthrough
-
Technical review
-
Inspection
Question 18
Question
Which of these statements is NOT a factor that contributes to successful reviews?
Answer
-
Participants should dedicate adequate time for the review
-
Splitting large work products into small parts to make the required effort less intense
-
Participants should avoid behaviors that might indicate boredom, exasperation, or hostility to
other participants
-
Failures found should be acknowledged, appreciated, and handled objectively
Question 19
Question
Which of the following is a characteristic of experience-based test techniques?
Answer
-
Test cases are created based on detailed design information
-
Items tested within the interface code section are used to measure coverage
-
The techniques heavily rely on the tester’s knowledge of the software and the business
domain
-
The test cases are used to identify deviations from the requirements
Question 20
Question
You are testing a simplified apartment search form which has only two search criteria:
• floor (with three possible options: ground floor; first floor; second or higher floor)
• garden type (with three possible options: no garden; small garden; large garden)
Only apartments on the ground floor may have gardens. The form has a built-in validation
mechanism that will not allow you to use the search criteria which violate this rule.
Each test has two input values: floor and garden type. You want to apply equivalence partitioning
(EP) to cover each floor and each garden type in your tests.
What is the minimal number of test cases to achieve 100% EP coverage?
Question 21
Question 22
Question
Based ONLY on the feature description of the Customer Relationship Management system, which
of the above rules describes an impossible situation?
Question 23
Question 24
Question
Your test suite achieved 100% statement coverage. What is the consequence of this fact?
Answer
-
Each instruction in the code that contains a defect has been executed at least once
-
Any test suite containing more test cases than your test suite will also achieve 100%
statement coverage
-
Each path in the code has been executed at least once
-
Every combination of input values has been tested at least once
Question 25
Question
Which of the following is NOT true for white-box testing?
Answer
-
During white-box testing the entire software implementation is considered
-
White-box coverage metrics can help identify additional tests to increase code coverage
-
White-box test techniques can be used in static testing
-
White-box testing can help identify gaps in requirements implementation
Question 26
Question
Which of the following BEST describes the concept behind error guessing?
Answer
-
Error guessing involves using your knowledge and experience of defects found in the past
and typical errors made by developers
-
Error guessing involves using your personal experience of development and the errors you
made as a developer
-
Error guessing requires you to imagine that you are the user of the test object and to guess
errors the user could make interacting with it
-
Error guessing requires you to rapidly duplicate the development task to identify the sort of
errors a developer might make
Question 27
Question
In your project there has been a delay in the release of a brand-new application and test execution
started late, but you have very detailed domain knowledge and good analytical skills. The full list of
requirements has not yet been shared with the team, but management is asking for some test results
to be presented.
Which test technique fits BEST in this situation?
Answer
-
Checklist-based testing
-
Error guessing
-
Exploratory testing
-
Branch testing
Question 28
Question
Which of the following BEST describes the way acceptance criteria can be documented?
Answer
-
Performing retrospectives to determine the actual needs of the stakeholders regarding a
given user story
-
Using the given/when/then format to describe an example test condition related to a given
user story
-
Using verbal communication to reduce the risk of misunderstanding the acceptance criteria
by others
-
Documenting risks related to a given user story in a test plan to facilitate the risk-based
testing of a given user story
Question 29
Question
Consider the following user story:
As an Editor
I want to review content before it is published
so that I can assure the grammar is correct
and its acceptance criteria:
• The user can log in to the content management system with "Editor" role
• The editor can view existing content pages
• The editor can edit the page content
• The editor can add markup comments
• The editor can save changes
• The editor can reassign to the "content owner" role to make updates
Which of the following is the BEST example of an ATDD test for this user story?
Answer
-
test if the editor can save the document after deleting the page content
-
test if the content owner can log in and make updates to the content
-
test if the editor can schedule the edited content for publication
-
test if the editor can reassign to another editor to make updates
Question 30
Question
How do testers add value to iteration and release planning?
Answer
-
Testers determine the priority of the user stories to be developed
-
Testers focus only on the functional aspects of the system to be tested
-
Testers participate in the detailed risk identification and risk assessment of user stories
-
Testers guarantee the release of high-quality software through early test design during the
release planning
Question 31
Question
Which TWO of the following options are the exit criteria for testing a system?
Answer
-
Test environment readiness
-
The ability to log in to the test object by the tester
-
Estimated defect density is reached
-
Requirements are translated into given/when/then format
-
Regression tests are automated
Question 32
Question
Your team uses the three-point estimation technique to estimate the test effort for a new high-risk
feature. The following estimates were made:
• most optimistic estimation: 2 person-hours
• most likely estimation: 11 person-hours
• most pessimistic estimation: 14 person-hours
What is the final estimate?
Answer
-
9 person-hours
-
14 person-hours
-
11 person-hours
-
10 person-hours
Question 33
Answer
-
TC 003
-
TC 005
-
TC 002
-
TC 001
Question 34
Question
Consider the following test categories (1-4) and agile testing quadrants (A-D):
1. Usability testing
2. Component testing
3. Functional testing
4. Reliability testing
A. Agile testing quadrant Q1: technology facing, supporting the development team
B. Agile testing quadrant Q2: business facing, supporting the development team
C. Agile testing quadrant Q3: business facing, critique the product
D. Agile testing quadrant Q4: technology facing, critique the product
How do the following test categories map onto the agile testing quadrants?
Answer
-
1C, 2A, 3B, 4D
-
1D, 2A, 3C, 4B
-
1C, 2B, 3D, 4A
-
1D, 2B, 3C, 4A
Question 35
Question
During a risk analysis the following risk was identified and assessed:
• Risk: Response time is too long to generate a report
• Risk likelihood: medium; risk impact: high
• Response to risk:
o an independent test team performs performance testing during system testing
o a selected sample of end users performs alpha and beta acceptance testing before the release
What measure is proposed to be taken in response to this analyzed risk?
Answer
-
Risk acceptance
-
Contingency plan
-
Risk mitigation
-
Risk transfer
Question 36
Question
Which tool can be used by an agile team to show the amount of work that has been completed and
the amount of total work remaining for a given iteration?
Answer
-
Acceptance criteria
-
Defect report
-
Test completion report
-
Burndown chart
Question 37
Question
You need to update one of the automated test scripts to be in line with a new requirement. Which
process indicates that you create a new version of the test script in the test repository?
Answer
-
Traceability management
-
Maintenance testing
-
Configuration management
-
Requirements engineering
Question 38
Question
You received the following defect report from the developers stating that the anomaly described in
this test report is not reproducible.
Application hangs up
2022-May-03 – John Doe – Rejected
The application hangs up after entering “Test input: $ä” in the Name field on the new user creation
screen. Tried to log off, log in with test_admin01 account, same issue. Tried with other test admin
accounts, same issue. No error message received; log (see attached) contains fatal error notification.
Based on the test case TC-1305, the application should accept the provided input and create the
user. Please fix with high priority, this feature is related to REQ-0012, which is a critical new business
requirement.
What critical information is MISSING from this test report that would have been useful for the
developers?
Answer
-
Expected result and actual result
-
References and defect status
-
Test environment and test item
-
Priority and severity
Question 39
Question
Which test activity does a data preparation tool support?
Question 40
Question
Which item correctly identifies a potential risk of performing test automation?
Answer
-
It may introduce unknown regressions in production
-
Sufficient efforts to maintain testware may not be properly allocated
-
Testing tools and associated testware may not be sufficiently relied upon
-
It may reduce the time allocated for manual testing
Question 41
Question
You were given a task to analyze and fix causes of failures in a new system to be released.
Which activity are you performing?
Answer
-
Debugging
-
Software testing
-
Requirement elicitation
-
Defect management
Question 42
Question
In many software organizations the test department is called the Quality Assurance (QA) department.
Is this sentence correct or not and why?
Answer
-
It is correct. Testing and QA mean exactly the same thing
-
It is correct. These names can be used interchangeably because both testing and QA focus
their activities on the same quality issues
-
It is not correct. Testing is something more; testing includes all activities with regard to quality.
QA focuses on quality-related processes
-
It is not correct. QA is focused on quality-related processes while testing concentrates on
demonstrating that a component or system is fit for purpose and to detect defects
Question 43
Question
A phone ringing in a neighboring cubicle distracts a programmer causing him to improperly program
the logic that checks the upper boundary of an input variable. Later, during system testing, a tester
notices that this input field accepts invalid input values.
Which of the following correctly describes an incorrectly coded upper bound?
Answer
-
The root cause
-
A failure
-
An error
-
A defect
Question 44
Question
Which test activity produces this testware as an output?
Question 45
Question
Which of the following is the BEST example of how traceability supports testing?
Answer
-
Performing the impact analysis of a change will give information about the completion of the tests
-
Analyzing the traceability between test cases and test results will give information about the estimated level of residual risk
-
Performing the impact analysis of a change will help selecting the right test cases for
regression testing
-
Analyzing the traceability between the test basis, the test objects and the test cases will help in selecting test data to achieve the assumed coverage of the test object
Question 46
Question
Which of the following BEST explains a benefit of independence of testing?
Answer
-
The use of an independent test team allows project management to assign responsibility for the quality of the final deliverable to the test team
-
If a test team external to the organization can be afforded, then there are distinct benefits in terms of this external team not being so easily swayed by the delivery concerns of project management and the need to meet strict delivery deadlines
-
An independent test team can work separately from the developers, need not be distracted with project requirement changes, and can restrict communication with the developers to defect reporting through the defect management system
-
When specifications contain ambiguities and inconsistencies, assumptions are made on their interpretation, and an independent tester can be useful in questioning those assumptions and the interpretation made by the developer
Question 47
Question
You are working as a tester in the team that follows the V-model. How does the choice of this
software development lifecycle (SDLC) model impact the timing of testing?
Answer
-
Dynamic testing cannot be performed early in the SDLC
-
Static testing cannot be performed early in the SDLC
-
Test planning cannot be performed early in the SDLC
-
Acceptance testing can be performed early in the SDLC
Question 48
Question
Which of the following are advantages of DevOps?
i. Faster product release and faster time to market
ii. Increases the need for repetitive manual testing
iii. Constant availability of executable software
iv. Reduction in the number of regression tests associated with code refactoring
v. Setting up the test automation framework is inexpensive since everything is
automated
Answer
-
i, ii, iv are advantages; iii, v are not
-
iii, v are advantages; i, ii, iv are not
-
i, iii are advantages; ii, iv, v are not
-
ii, iv, v are advantages; i, iii are not
Question 49
Question
You work as a tester in a project on a mobile application for food ordering for one of your clients.
The client sent you a list of requirements. One of them, with high priority, says
“The order must be processed in less than 10 seconds in 95% of the cases”.
You created a set of test cases in which a number of random orders were made, the processing time
measured, and the test results were checked against the requirements.
What test type did you perform?
Answer
-
Functional, because the test cases cover the user’s business requirement for the system
-
Non-functional, because the measure the system’s performance
-
Functional, because the test cases interact with the user interface
-
Structural, because we need to know the internal structure of the program to measure the order processing time
Question 50
Question
Your organization’s test strategy suggests that once a system is going to be retired, data migration
shall be tested. As part of what test type is this testing MOST likely to be performed?
Answer
-
Maintenance testing
-
Regression testing
-
Component testing
-
Integration testing
Question 51
Question
The following is a list of the work products produced in the SDLC.
i. Business requirements
ii. Schedule
iii. Test budget
iv. Third-party executable code
v. User stories and their acceptance criteria
Which of them can be reviewed?
Answer
-
i and iv can be reviewed; ii, iii and v cannot
-
i, ii, iii and iv can be reviewed; v cannot
-
i, ii, iii, and v can be reviewed; iv cannot
-
iii, iv, v can be reviewed; i and ii cannot
Question 52
Question
Decide which of the following statements (i-v) are true for dynamic testing and which are true for
static testing.
i. Abnormal external behaviors are easier to identify with this testing
ii. Discrepancies from a coding standard are easier to find with this testing
iii. It identifies failures caused by defects when the software is run
iv. Its test objective is to identify defects as early as possible
v. Missing coverage for critical security requirements is easier to find and fix
Answer
-
i, iv, v are true for static testing; ii, iii are true for dynamic testing
-
i, iii, iv are true for static testing; ii, v are true for dynamic testing
-
ii, iii are true for static testing; i, iv, v are true for dynamic testing
-
ii, iv, v are true for static testing; i, iii, iv are true for dynamic testing
Question 53
Question
Which of the following statements about formal reviews is TRUE?
Answer
-
Some reviews do not require more than one role
-
The review process has several activities
-
Documentation to be reviewed is not distributed before the review meeting, with the exception of the work product for specific review types
-
Defects found during the review are not reported since they are not found by dynamic testing
Question 54
Question
What task may management take on during a formal review?
Answer
-
Taking overall responsibility for the review
-
Deciding what is to be reviewed
-
Ensuring the effective running of review meetings, and mediating, if necessary
-
Recording review information such as review decisions
Question 55
Question
A wine storage system uses a control device that measures the wine cell temperature T (measured
in °C, rounded to the nearest degree) and alarms the user if it deviates from the optimal value of
12, according to the following rules:
• if T = 12, the system says, “optimal temperature”
• if T < 12, the system says, “temperature is too low!”
• if T > 12, the system says, “temperature is too high!”
You want to use the 3-point boundary value analysis (BVA) to verify the behavior of the control
device. A test input is a temperature in °C provided by the device.
What is the MINIMAL set of test inputs that achieves 100% of the desired coverage?
Answer
-
11, 12, 13
-
10, 12, 14
-
10, 11, 12, 13, 14
-
10, 11, 13, 14
Question 56
Question
Which of the following statements about branch testing is CORRECT?
Answer
-
If a program includes only unconditional branches, then 100% branch coverage can be
achieved without executing any test cases
-
If the test cases exercise all unconditional branches in the code, then 100% branch coverage is achieved
-
If 100% statement coverage is achieved, then 100% branch coverage is also achieved
-
If 100% branch coverage is achieved, then all decision outcomes in each decision statement in the code are exercised
Question 57
Question
You are testing a mobile application that allows customers to access and manage their bank
accounts. You are running a test suite that involves evaluating each screen, and each field on each
screen, against a general list of user interface best practices derived from a popular book on the
topic that maximizes attractiveness, ease-of-use, and accessibility for such applications.
Which of the following options BEST categorizes the test technique you are using?
Answer
-
Black-box
-
Exploratory
-
Checklist-based
-
Error guessing
Question 58
Question
Which of the following BEST describe the collaborative approach to user story writing?
Answer
-
User stories are created by testers and developers and then accepted by business
representatives
-
User stories are created by business representatives, developers, and testers together
-
User stories are created by business representatives and verified by developers and testers
-
User stories are created in a way that they are independent, negotiable, valuable,
estimable, small, and testable
Question 59
Question
Consider the following part of a test plan.
Testing will be performed using component testing and component integration testing. The
regulations require to demonstrate that 100% branch coverage is achieved for each component
classified as critical.
Which part of the test plan does this part belong to?
Answer
-
Communication
-
Risk register
-
Context of testing
-
Test approach
Question 60
Question
Which of the following is the BEST example of the next step?
Answer
-
The product owner has to step in and make a final decision
-
Accept 13 as the final test estimate as this has most of the votes
-
No further action is needed. Consensus has been reached
-
Remove the new feature from the current release because consensus has not been
reached
Question 61
Question
Which of the following is NOT true regarding the test pyramid?
Answer
-
The test pyramid emphasizes having a larger number of tests at the lower test levels
-
The closer to the top of the pyramid, the more formal your test automation should be
-
Usually, component testing and component integration testing are automated using API-based tools
-
For system testing and acceptance testing, the automated tests are typically created using GUI-based tools
Question 62
Question
During risk analysis the team considered the following risk: “The system allows too high a discount
for a customer”. The team estimated the risk impact to be very high.
What can one say about the risk likelihood?
Answer
-
It is also very high. High risk impact always implies high risk likelihood
-
It is very low. High risk impact always implies low risk likelihood
-
One cannot say anything about risk likelihood. Risk impact and risk likelihood are
independent.
-
Risk likelihood is not important with such a high-risk impact. One does not need to define it.
Question 63
Question
The following list contains risks that have been identified for a new software product to be developed:
i. Management moves two experienced testers to another project
ii. The system does not comply with functional safety standards
iii. System response time exceeds user requirements
iv. Stakeholders have inaccurate expectations
v. Disabled people have problems when using the system
Which of them are project risks?
Answer
-
i, iv are project risks; ii, iii, v are not project risks
-
iv, v are project risks; i, ii, iii are not project risks
-
i, iii are project risks; ii, iv, v are not project risks
-
ii, v are project risks; i, iii, iv are not project risks
Question 64
Question
Which of the following is an example of how product risk analysis influences thoroughness and scope
of testing?
Answer
-
The test manager monitors and reports the level of all known risks on a daily basis so the stakeholders can make an informed decision on the release date
-
One of the identified risks was "Lack of support of open-source databases", so the team decided to integrate the system with an open-source database
-
During the quantitative risk analysis, the team estimated the total level of all identified risks and reported it as the total residual risk before testing
-
Risk assessment revealed a very high level of performance risks, so it was decided to perform detailed performance efficiency testing early in the SDLC
Question 65
Question
Which TWO of the following options are common metrics used for reporting on the quality level of
the test object?
Answer
-
Number of defects found during system testing
-
Total effort on test design divided by the number of designed test cases
-
Number of executed test procedures
-
Number of defects found divided by the size of a work product
-
Time needed to repair a defect
Question 66
Question
Which of the following pieces of information contained in a test progress report is the LEAST useful
for business representatives
Question 67
Question
Failure is [blank_start]_________[blank_end]
A. Incorrect program behavior due to a fault in the program
B. Bug found before product Release
C. Bug found after product Release
D. Bug found during Design phase
Question 68
Question
Which of the following can be the root cause of a bug in a software product?
(I) The project had incomplete procedures for configuration management.
(II) The time schedule to develop a certain component was cut.
(III) the specification was unclear
(IV) Use of the code standard was not followed up
(V) The testers were not certified
Answer
-
(I) and (II) are correct
-
(I) through (IV) are correct
-
(III) through (V) are correct
-
(I), (II) and (IV) are correct
Question 69
Question
Which of the following is NOT a reasonable test objective?
Answer
-
To find faults in the software
-
To give confidence in the software
-
To find performance problems
-
To prove that the software has no faults
Question 70
Question
Which of the following is true
Answer
-
Testing is the same as quality assurance
-
Testing is a part of quality assurance
-
Testing is not a part of quality assurance
-
Testing is the same as debugging
Question 71
Question
Which of the following sentences describes one of these basic principles?
Answer
-
Complete testing of software is attainable if you have enough resources and test tools
-
With automated testing, you can make statements with more confidence about the quality of a product than with manual testing
-
For a software system, it is not possible, under normal conditions, to test all input and
output combinations
-
A goal of testing is to show that the software is defect-free.
Question 72
Question
A test team consistently finds between 90% and 95% of the defects present in the
system under test.
While the test manager understands that this is a good defect-detection
percentage for her test team and industry, senior management and executives remain
disappointed in the test group, saying that the test team misses too many bugs.
Given that the users are generally happy with the system and that the failures which have occurred
have generally been low impact, which of the following testing principles is most likely to
help the test manager explain to these managers and executives why some defects are
likely to be missed?
Question 73
Question
Which activity in the fundamental test process includes evaluation of the testability
of the requirements and system?
Answer
-
Test design.
-
Test implementation.
-
Test analysis
-
Test control.
Question 74
Question
Consider the following list of test process activities:
I. Analysis
II. Test completion
III. Execution
IV. Planning
V. Implementation
Which of the following places these in their logical sequence?
Answer
-
IV, I, V, II, and III
-
IV, I, V, III, and II
-
I, II, III, IV, and V
-
I, IV, V, III, and II
Question 75
Question
Which of the following is most important to promote and maintain good relationships
between testers and developers?
Answer
-
Understanding what managers value about testing
-
Promoting better quality software whenever possible
-
Explaining test results in a neutral fashion
-
Identifying potential customer workarounds for bugs
Question 76
Question
Match the following work products with their corresponding Test process group
(i) Test summary reports
(ii) Change requests
(iii) Test suites
(iv) Defect reports
(w) Test execution
(x) Test implementation
(y) Test monitoring and control
(z) Test completion
Answer
-
i-z, ii-z , iii-w, iv-w
-
i-x, ii-w, iii-z, iv-y
-
i-y, ii-z, iii-x, iv-w
-
i-w, ii-x , iii-y, iv-z
Question 77
Question
Which of the following is true of the V model?
Question 78
Question
Which of the following combinations correctly describe a valid approach to component testing?
Question 79
Question
Consider the following statements about regression tests.
Question 80
Question
Which of these is a functional test?
Question 81
Question
Consider the following statements about maintenance testing.
Question 82
Question
To test a function, the programmer has to write a _________, which calls the
function to be tested and passes it test data.
Question 83
Question
The _______should include operational tests of the new environment as well as of the changed software
Answer
-
system testing
-
integration testing
-
component testing
-
maintenance testing