Choose a topic to test your knowledge and improve your Maven skills
Decision table technique is sometimes also referred to as a ________ table.
_____ is a model that illustrates how testing activities integrate with software development phases.
_____ is triggered by modifications, migration or retirement of existing software.
RTM stands for ______
The purpose of the _______ is to ensure that all requirements defined for a system are tested in the test protocols.
RTM is prepared _____
In ___________ each component at lower hierarchy is tested individually and then the components that rely upon these components are tested.
Bottom up testing starts with _____
DRE stands for _______
DRE=Number of bugs while testing /number of bugs while testing + number of bugs _____
Which is likely to benefit most from the use of test tools providing test capture and replay facilities?
While testing a product designed to mark exams, a tester determines that all scores between 90 to 100 yields a grade of A, but scores below 90 will not. This analysis is known as:
Which Life Cycle model has lesser, more or different levels of development and testing, all depending on the project and the software product?
_______ is a partial measure of test thoroughness.
_______ is an error condition hiding another error condition.
COTS means _____
______ is based on the project plan, but with greater amounts of detail.
STLC stands for _______
During ___________ testing, code is not executed.
Static testing is done using the software _____
To perform ____________ the code needs to be in executive form.
______ is a process of evaluating software at development phase.
_____ is the process of checking whether the software meets the customer requirements as well as evaluating it after the development process.
______ is finding defects when the system under goes testing as a whole.
System testing is also known as ________
UAT stands for ______
______ involves running a product through a series of specific tests which determine whether the product meets the needs of its users.
__________ is prepared before the actual testing starts.
_______ is a document that contains the steps that has to be executed.
______ is written in a programming language and is a short program used to test part of functionality of the software system.
_______ is an existing defect in the system which does not cause any failure.
________ are set of documents, tools and other components that has to be developed and maintained in support of testing.
_______ is a technique to identify whether a set of test data is useful by intentionally introducing various code changes (bugs).
Mutation testing is a form of _____
Mutation score = _____________ / total number of mutants
For a mutant to be killed, the test must __________ the mutated statement.
Input data from the test must __________ the program state by causing different program states for the mutant and the original program.
The incorrect program state must __________ to the program’s output and be checked by the test.
Mutation Testing follows the ____________ model.
The ____________ hypothesis states that most software faults are due to small syntactic errors.
The ______________ asserts that simple faults can cascade to form other emergent faults.
_______ requires that only the first and second conditions of the RIP model are satisfied.
Weak mutation is closely related to ____________ methods.
______ is a measure used to describe the degree to which the source code of a program is executed when a particular test suite runs.
______ is usually defined as a rule or requirement, which test suite needs to satisfy.
For the statement if( a || b) , which is not a mutant?
Mutants which result in programs which are behaviourally equivalent to the original one are called ______
For the following function, int example (int x, int y) { int z = 0; if ((x>0) && (y>0)) { z = x; } return z; } Which function call ensure statement coverage for this function?
For the following function, int example (int x, int y) { int z = 0; if ((x>0) && (y>0)) { z = x; } return z; } Which function call ensure function coverage for this function?
For the following function, int example (int x, int y) { int z = 0; if ((x>0) && (y>0)) { z = x; } return z; } Which function call ensure branch coverage for this function?