Maven MCQ Quiz Hub

Maven Mcq Set 6

Choose a topic to test your knowledge and improve your Maven skills

Decision table technique is sometimes also referred to as a ________ table.





✅ Correct Answer: 1

_____ is a model that illustrates how testing activities integrate with software development phases.





✅ Correct Answer: 2

_____ is triggered by modifications, migration or retirement of existing software.





✅ Correct Answer: 3

RTM stands for ______





✅ Correct Answer: 4

The purpose of the _______ is to ensure that all requirements defined for a system are tested in the test protocols.





✅ Correct Answer: 1

RTM is prepared _____





✅ Correct Answer: 2

In ___________ each component at lower hierarchy is tested individually and then the components that rely upon these components are tested.





✅ Correct Answer: 3

Bottom up testing starts with _____





✅ Correct Answer: 4

DRE stands for _______





✅ Correct Answer: 1

DRE=Number of bugs while testing /number of bugs while testing + number of bugs _____





✅ Correct Answer: 3

Which is likely to benefit most from the use of test tools providing test capture and replay facilities?





✅ Correct Answer: 1

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:





✅ Correct Answer: 2

Which Life Cycle model has lesser, more or different levels of development and testing, all depending on the project and the software product?





✅ Correct Answer: 3

_______ is a partial measure of test thoroughness.





✅ Correct Answer: 4

_______ is an error condition hiding another error condition.





✅ Correct Answer: 2

COTS means _____





✅ Correct Answer: 3

______ is based on the project plan, but with greater amounts of detail.





✅ Correct Answer: 1

STLC stands for _______





✅ Correct Answer: 4

During ___________ testing, code is not executed.





✅ Correct Answer: 3

Static testing is done using the software _____





✅ Correct Answer: 1

To perform ____________ the code needs to be in executive form.





✅ Correct Answer: 1

______ is a process of evaluating software at development phase.





✅ Correct Answer: 2

_____ is the process of checking whether the software meets the customer requirements as well as evaluating it after the development process.





✅ Correct Answer: 1

______ is finding defects when the system under goes testing as a whole.





✅ Correct Answer: 4

System testing is also known as ________





✅ Correct Answer: 3

UAT stands for ______





✅ Correct Answer: 4

______ involves running a product through a series of specific tests which determine whether the product meets the needs of its users.





✅ Correct Answer: 1

__________ is prepared before the actual testing starts.





✅ Correct Answer: 1

_______ is a document that contains the steps that has to be executed.





✅ Correct Answer: 2

______ is written in a programming language and is a short program used to test part of functionality of the software system.





✅ Correct Answer: 3

_______ is an existing defect in the system which does not cause any failure.





✅ Correct Answer: 1

________ are set of documents, tools and other components that has to be developed and maintained in support of testing.





✅ Correct Answer: 2

_______ is a technique to identify whether a set of test data is useful by intentionally introducing various code changes (bugs).





✅ Correct Answer: 4

Mutation testing is a form of _____





✅ Correct Answer: 3

Mutation score = _____________ / total number of mutants





✅ Correct Answer: 1

For a mutant to be killed, the test must __________ the mutated statement.





✅ Correct Answer: 4

Input data from the test must __________ the program state by causing different program states for the mutant and the original program.





✅ Correct Answer: 2

The incorrect program state must __________ to the program’s output and be checked by the test.





✅ Correct Answer: 3

Mutation Testing follows the ____________ model.





✅ Correct Answer: 1

The ____________ hypothesis states that most software faults are due to small syntactic errors.





✅ Correct Answer: 2

The ______________ asserts that simple faults can cascade to form other emergent faults.





✅ Correct Answer: 1

_______ requires that only the first and second conditions of the RIP model are satisfied.





✅ Correct Answer: 1

Weak mutation is closely related to ____________ methods.





✅ Correct Answer: 2

______ is a measure used to describe the degree to which the source code of a program is executed when a particular test suite runs.





✅ Correct Answer: 2

______ is usually defined as a rule or requirement, which test suite needs to satisfy.





✅ Correct Answer: 3

For the statement if( a || b) , which is not a mutant?





✅ Correct Answer: 4

Mutants which result in programs which are behaviourally equivalent to the original one are called ______





✅ Correct Answer: 3

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?





✅ Correct Answer: 4

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?





✅ Correct Answer: 2

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?





✅ Correct Answer: 3