Software Testing KC
Software Testing KC
Detailed Results
Review
Selected
Incorrect answer.
Connected
Selected
Incorrect answer.
Static
Selected
Correct answer.
Dynamic
Selected
Correct answer.
Question
:
Detailed Results
Test level
Selected
Correct answer.
Tester preference
Selected
Incorrect answer.
SDLM employed
Selected
Correct answer.
Programming language
Selected
Incorrect answer.
Question
:
Detailed Results
Detailed Results
Detailed Results
Quality testing
Selected
Incorrect answer.
Quality assurance
Selected
Correct answer.
Quality control
Selected
Correct answer.
Question
:
Detailed Results
Detailed Results
Which of these represent the first two principles of the 7 ISTQB testing principles?
Detailed Results
Detailed Results
Which of these are contextual factors that may have an influence on the test process?
Detailed Results
Programming language
Selected
Incorrect answer.
Business domain
Selected
Correct answer.
Start date
Selected
Incorrect answer.
Operational constraints
Selected
Correct answer.
SDLM
Selected
Correct answer.
Question
:
Which of these are main groups of activities or phases comprising the test process?
Detailed Results
Test execution
Selected
Correct answer.
Test initiation
Selected
Incorrect answer.
Test study
Selected
Incorrect answer.
Test planning
Selected
Correct answer.
Recognizing the pesticide paradox, what must testers do to avoid situations caused by
the principle?
Detailed Results
According to the absence of errors fallacy, systematically testing all requirements and
addressing each defect may produce a system with which of these qualities?
Detailed Results
Which of these are examples of activities that define the approach for meeting the tests
objectives?
Detailed Results
Generating a test schedule to meet a deadline
Selected
Correct answer.
Which test question does the test analysis phase best answer?
Detailed Results
Why do we test?
Not selected. Not selected is correct.
What is to be tested?
Selected
Correct answer.
Which test question does the test analysis phase best answer?
Detailed Results
Why do we test?
Not selected. Not selected is correct.
What is to be tested?
Selected
Correct answer.
Detailed Results
Detailed Results
Analyze anomalies
Selected
Correct answer.
Detailed Results
Which of these are typical test monitoring and control work products?
Detailed Results
Anomalies predicted
Not selected. Not selected is correct.
Question
:
Detailed Results
Test suites
Selected
Correct answer.
Question
:
Detailed Results
Detailed Results
Test auditing
Selected
Correct answer.
What is the name of the bias whereby developers exhibit bias against the notion that
their code is incorrect?
Detailed Results
Erroneous bias
Not selected. Not selected is correct.
Confirmation bias
Not selected
Correct answer.
Anomaly bias
Selected
Incorrect answer.
Question
:
Which of these statements most accurately describe the typical developer in the context
of mindset?
Detailed Results
Detailed Results
Waterfall model
Selected
Correct answer.
SDLM-model
Not selected. Not selected is correct.
V-model
Selected
Correct answer.
Question
:
Detailed Results
Question
:
Which of these statements accurately describe the selection of SDLM based on the
context of the project?
Detailed Results
SDLMs may be combined
Selected
Correct answer.
Detailed Results
Detailed Results
Integration testing
Selected
Correct answer.
Component testing
Selected
Correct answer.
Functional testing
Not selected. Not selected is correct.
Execution testing
Not selected. Not selected is correct.
Acceptance testing
Selected
Correct answer.
Question
:
Which of these are work products that can be used as a test basis for component
testing?
Detailed Results
Interface protocols
Not selected. Not selected is correct.
Interface definitions
Not selected. Not selected is correct.
Data model
Selected
Correct answer.
Software code
Selected
Correct answer.
Question
:
Which of these are test objects that can be used from component integration testing?
Detailed Results
Microservices
Selected
Correct answer.
APIs
Selected
Correct answer.
Databases
Selected
Correct answer.
Question
:
Which of these are examples of typical defects and failures for system integration
testing?
Detailed Results
Which of these are examples of work products that can be used as a test basis for any
form of acceptance testing?
Detailed Results
Business processes
Selected
Correct answer.
Operations documentation
Not selected. Not selected is correct.
User documentation
Selected
Correct answe
Question
:
Which of these are valid forms of acceptance testing according to the ISTQB
certification exam Software Testing Foundation Level 2018 syllabus?
Detailed Results
Functional testing tests the function of the system. Which statement best describes
system functions?
Detailed Results
Detailed Results
Performance efficiency
Selected
Correct answer.
Component operation
Selected
Incorrect answer.
Usability
Selected
Correct answer.
Security
Selected
Correct answer.
of the system?
Detailed Results
Compatibility
Selected
Incorrect answer.
Code
Selected
Correct answer.
Architecture
Selected
Correct answer.
Question
:
Detailed Results
Detailed Results
It is not necessary for every test type to be used at every test level
Selected
Correct answer.
Detailed Results
The scope of maintenance testing varies, and depends on which of these factors?
Detailed Results
Tester autonomy
Selected
Incorrect answer.
Detailed Results
Modification
Selected
Correct answer.
Tester training
Selected
Incorrect answer.
Migration
Selected
Correct answer.
Question
:
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Checklist is flexible and may change
Selected
Correct answer.
Detailed Results
Detailed Results
Given a data entry form that allows a single numeric character that may consist of
integers from 0 to 9 and valid values from 3 to 6, which of these sets of values would
cover all three partitions?
Detailed Results
0, 3, 6
Not selected. Not selected is correct.
0, 7, 9
Not selected. Not selected is correct.
1, 5, 8
Selected
Correct answer.
Question
:
Detailed Results
Given a data entry form that allows a single numeric character that may consist of
integers from 0 to 9 and valid values from 1 to 7, which of these values is the min+
value?
2
Selected
Correct answer.
Question
:
Which of these are valid statements describing conditions and actions in a decision
table?
Detailed Results
Given this scenario, how many combinations of conditions will there be in the decision
table?
User login screenUser must specify username and passwordIf user specifies both,
redirect to home pageIf either username or password fails, display an error message
Result: Correct. Great job!
Detailed Results
2
Not selected. Not selected is correct.
4
Selected
Correct answer.
1
Not selected. Not selected is correct.
8
Not selected. Not selected is correct.
Question
:
Detailed Results
Given the following requirements, how many states should appear in a state transition
table?
Detailed Results
1
Not selected. Not selected is correct.
4
Not selected
Correct answer.
2
Selected
Incorrect answer.
Question
:
Detailed Results
Coverage is typically expressed as Pass or Fail
Not selected. Not selected is correct.
User login screen User must specify username and password System validates
username and password If error, displays error messageAllows 3 attempts If
username/password fails 3 times System displays forgot password form
Result: Correct. Great job!
Detailed Results
Password
Not selected. Not selected is correct.
User
Not selected. Not selected is correct.
System
Selected
Correct answer.
Login screen
Not selected. Not selected is correct.
Question
:
Detailed Results
Given this code, which test sets result in 100% statement coverage?
Code Editor:
read x
read y
z = x – (5 * y)
if z < 0 then
print "z negative"
endif
Result: Correct. Great job!
Detailed Results
x = 10, y = 5
Selected
Correct answer.
x = 25, y = 5
Not selected. Not selected is correct.
x = 15, y = 3
Not selected. Not selected is correct.
x = 5, y = 2
Selected
Correct answer.
Question
:
Detailed Results
Given this code, how many test sets are required for 100% decision coverage?
Code Editor:
read x
read y
z = x – (5 * y)
if z < 0 then
print "z negative"
endif
Detailed Results
2
Selected
Correct answer.
4
Not selected. Not selected is correct.
10
Not selected. Not selected is correct.
Question
:
Decision coverage must include True outcomes but not necessarily False
outcomes
Selected
Incorrect answer.
Independent external testers are the most independent testing group. Which of these
statements accurately describe independent external testers?
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Analytical
Selected
Correct answer.
Component
Not selected. Not selected is correct.
Reactive
Selected
Correct answer.
Question
:
Detailed Results
Test approach is tailored test strategy
Not selected
Correct answer.
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Product size
Selected
Incorrect answer.
Time pressure
Selected
Correct answer.
Test approach
Selected
Correct answer.
Question
:
Detailed Results
Statement-based
Selected
Incorrect answer.
Expert-based
Selected
Correct answer.
Decision-based
Selected
Incorrect answer.
Metrics-based
Selected
Correct answer.
Question
:
Detailed Results
Test control actions may not affect other software lifecycle activities
Not selected. Not selected is correct.
Question
:
Detailed Results
Metrics may be collected to assess the adequacy of the test approach
Selected
Correct answer.
Which of these are considered significant factors that affect the content of test reports?
Answer Choices
The project
The organization
When are test summary reports typically issued by the test manager?
Detailed Results
Detailed Results
Detailed Results
Detailed Results
You are testing the only login form for version 1.2.1 of a web application. Which name is
most appropriate for your test plan?
Detailed Results
TPL_Login
Not selected. Not selected is correct.
REQ_1.2.1_Login
Not selected. Not selected is correct.
TPL_1.2.1
Selected
Correct answer.
Question
:
Detailed Results
Product
Selected
Correct answer.
Project
Selected
Correct answer.
Question
:
What are product risks referred to when associated with characteristics like reliability,
performance efficiency, and usability?
Detailed Results
Ephemeral risks
Not selected. Not selected is correct.
Characteristic risks
Not selected. Not selected is correct.
Software risks
Not selected. Not selected is correct.
Quality risks
Selected
Correct answer.
Question
:
Detailed Results
Temporary issues
Not selected. Not selected is correct.
Organizational concerns
Selected
Correct answer.
Technical issues
Selected
Correct answer.
Question
:
What type of code violations does a product risk analysis typically examine?
Detailed Results
Decision branching
Not selected. Not selected is correct.
Functional computations
Not selected. Not selected is correct.
Security risks
Selected
Correct answer.
Stability threat
Selected
Correct answer.
Question
:
In a risk-based approach to testing, what are the results of product risk analysis
generally used for?
Detailed Results
Detailed Results
Detailed Results
Which of these items are typically found in a defect report during dynamic testing?
Detailed Results
Expected results
Selected
Correct answer.
Programming language
Selected
Incorrect answer.
Change history
Selected
Correct answer.
Detailed Results
Test tools are typically classified based on one of several different criteria. What are intrusive
test tools?
Detailed Results
Which of these statements describe tools for managing tests and testware?
Detailed Results
Which of these are static test tools for the Python programming language?
Detailed Results
PyCharm
Selected
Correct answer.
PyBook
Not selected. Not selected is correct.
PyLint
Selected
Correct answer.
Question
:
Coverage tools are used to identify elements that may be counted. What is the process
of identifying coverage items at component testing called?
Detailed Results
Breakpointing code
Not selected. Not selected is correct.
Stubbing code
Not selected. Not selected is correct.
Instrumenting code
Selected
Correct answer.
Question
:
Which of these are tasks that dynamic analysis tools are typically used for?
Some tools focus on usability testing. Which of these is an area where usability testing
may focus?
Detailed Results
Satisfaction
Selected
Correct answer.
Memorability
Selected
Correct answer.
Question
:
One of the benefits of test automation is a reduction in repetitive work. Which of these
are areas that would benefit from test automation by reducing repetitive work?
Detailed Results
Error reporting
Selected
Incorrect answer.
Regression testing
Selected
Correct answer.
Environment maintenance
Selected
Correct answer.
Question
:
Detailed Results
Introducing bugs
Selected
Incorrect answer.
Unrealistic expectations
Selected
Correct answer.
Identifying trivial errors
Selected
Incorrect answer.
Question
:
Which of these are typical considerations when selecting test execution tools?
Detailed Results
Coverage requirements
Selected
Incorrect answer.
Capturing scripts
Selected
Correct answer.
Testing approach
Selected
Correct answer.
Question
:
Typical test management tools must interface with other test tools, spreadsheets, and
other objects. Which of these are considered common reasons for the interfacing
requirement?
Detailed Results
Test object version information
Selected
Correct answer.
Requirements traceability
Selected
Correct answer.
Question
:
Detailed Results
Vendor evaluation
Not selected. Not selected is correct.
Detailed Results
Detailed Results
Detailed Results
Static analysis
Selected
Correct answer.
Reviews
Selected
Correct answer.
Question
:
Detailed Results
When performing a requirements review, which of these are principle you should
consider?
Detailed Results
Dynamic testing detects failures caused by defects when running the software. Why
then should static testing be used as well?
Detailed Results
Which of these are valid activities of the work product review process?
Detailed Results
Planning
Selected
Correct answer.
Execute test
Not selected. Not selected is correct.
Initiate test
Selected
Incorrect answer.
Initiate review
Not selected
Correct answer.
Question
:
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Detailed Results
Typical roles include specific end user and organizational user types
Selected
Correct answer.
Question
:
Detailed Results
Which of these are organizational factors that can help provide a successful review
outcome?
Detailed Results
Each review has clear objectives
Selected
Correct answer.