Maven MCQ Quiz Hub

Maven Mcq Set 6

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

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




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




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




4. RTM stands for ______




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




6. RTM is prepared _____




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




8. Bottom up testing starts with _____




9. DRE stands for _______




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




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




12. 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:




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




14. _______ is a partial measure of test thoroughness.




15. _______ is an error condition hiding another error condition.




16. COTS means _____




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




18. STLC stands for _______




19. During ___________ testing, code is not executed.




20. Static testing is done using the software _____




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




22. ______ is a process of evaluating software at development phase.




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




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




25. System testing is also known as ________




26. UAT stands for ______




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




28. __________ is prepared before the actual testing starts.




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




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




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




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




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




34. Mutation testing is a form of _____




35. Mutation score = _____________ / total number of mutants




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




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




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




39. Mutation Testing follows the ____________ model.




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




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




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




43. Weak mutation is closely related to ____________ methods.




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




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




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




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




48. 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?




49. 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?




50. 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?