R4RIN
Articles
Java 8
MCQS
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.
Cause-effect
Redundant
Extreme
Isolated
2. _____ is a model that illustrates how testing activities integrate with software development phases.
Waterfall Model
V-Model
Spiral Model
Iterative Model
3. _____ is triggered by modifications, migration or retirement of existing software.
Regression Testing
Unit Testing
Maintenance testing
Integration Testing
4. RTM stands for ______
Repeated Trade Matrix
Redundant Trace Module
Robust Test Mechanism
Requirement traceability matrix
5. The purpose of the _______ is to ensure that all requirements defined for a system are tested in the test protocols.
RTM
FDD
KISS
TM
6. RTM is prepared _____
After test case designing
Before test case designing
During test case designing
Not prepared
7. In ___________ each component at lower hierarchy is tested individually and then the components that rely upon these components are tested.
Top down testing
Unit testing
Bottom up
Load testing
8. Bottom up testing starts with _____
Root
Second level roots
Inner nodes
Terminal nodes
9. DRE stands for _______
Defect Removal Efficiency
Detect Redundant Errors
Defectively Run Enumerations
Detect Random Error
10. DRE=Number of bugs while testing /number of bugs while testing + number of bugs _____
Found redundant
Not found
Found by user
Found by tester
11. Which is likely to benefit most from the use of test tools providing test capture and replay facilities?
Regression testing
Integration testing
System testing
User acceptance testing
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:
Boundary Value Analysis
Equivalence Partitioning
Positive Analysis
Negative Analysis
13. Which Life Cycle model has lesser, more or different levels of development and testing, all depending on the project and the software product?
Waterfall
Spiral
V shaped
Iterative Model
14. _______ is a partial measure of test thoroughness.
Boundary value testing
Equivalence Partitioning
DRE
Coverage measurement
15. _______ is an error condition hiding another error condition.
Masking
Fault Masking
Coverage measurement
Error Management
16. COTS means _____
Cover Over The Source
Come Over The Standard
Commercial off The Shelf
Connecting Online Test Service
17. ______ is based on the project plan, but with greater amounts of detail.
Phase Test Plan
Review Plan
Review Document
Phase Design
18. STLC stands for _______
Software Test Locale Code
Software Transfer Limited Code
Software Total Licence Control
Software Test Life Cycle
19. During ___________ testing, code is not executed.
Unit
Dynamic
Static
Equivalence
20. Static testing is done using the software _____
Documentation
Manual
Design
Comment
21. To perform ____________ the code needs to be in executive form.
Dynamic Testing
Static Testing
Integration Testing
Documentation Testing
22. ______ is a process of evaluating software at development phase.
Validation
Verification
Design Check
Design Evaluation
23. _____ is the process of checking whether the software meets the customer requirements as well as evaluating it after the development process.
Validation
Verification
Design Check
Design Evaluation
24. ______ is finding defects when the system under goes testing as a whole.
User Acceptance Testing
Unit Testing
Loss Testing
System Testing
25. System testing is also known as ________
User Acceptance Testing
Regression Testing
End to End Testing
Lossless Testing
26. UAT stands for ______
Universal Access Testing
Unified Anchor Testing
User Access Testing
User acceptance testing
27. ______ involves running a product through a series of specific tests which determine whether the product meets the needs of its users.
User Acceptance Testing
Unit Testing
Loss Testing
System Testing
28. __________ is prepared before the actual testing starts.
Test Scenarios
Test Cases
Test Script
Latent defect
29. _______ is a document that contains the steps that has to be executed.
Test Scenarios
Test Cases
Test Script
Latent defect
30. ______ is written in a programming language and is a short program used to test part of functionality of the software system.
Test Scenarios
Test Cases
Test Script
Latent defect
31. _______ is an existing defect in the system which does not cause any failure.
Latent defect
Redundancy
Failure
Exit Cause
32. ________ are set of documents, tools and other components that has to be developed and maintained in support of testing.
Test Functions
Test Deliverables
Test Solutions
Test Mechanisms
33. _______ is a technique to identify whether a set of test data is useful by intentionally introducing various code changes (bugs).
Unit Testing
Stress Testing
Load Testing
Mutation Testing
34. Mutation testing is a form of _____
Black Box Testing
Redundancy
White Box Testing
Loss Testing
35. Mutation score = _____________ / total number of mutants
Number of mutants killed
Number of mutants not killed
Total number of mutants
Total number of live mutants
36. For a mutant to be killed, the test must __________ the mutated statement.
Overlook
Ignore
Limit
Reach
37. Input data from the test must __________ the program state by causing different program states for the mutant and the original program.
Reach
Infect
Kill
Destroy
38. The incorrect program state must __________ to the program’s output and be checked by the test.
Reach’
Infect
Propagate
Limit
39. Mutation Testing follows the ____________ model.
RIP
KISS
RUN
GOD
40. The ____________ hypothesis states that most software faults are due to small syntactic errors.
Coupling effect
Competent programmer
Higher-order mutation
Equivalent mutation
41. The ______________ asserts that simple faults can cascade to form other emergent faults.
Coupling effect
Competent programmer
Higher-order mutation
Equivalent mutation
42. _______ requires that only the first and second conditions of the RIP model are satisfied.
Weak mutation testing
Strong mutation testing
Weak test data
Strong test data
43. Weak mutation is closely related to ____________ methods.
Code Conduct
Code Coverage
Mutation Coverage
Mutation Redundancy
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.
Code Conduct
Code Coverage
Mutation Coverage
Mutation Redundancy
45. ______ is usually defined as a rule or requirement, which test suite needs to satisfy.
Code Conduct
Code Coverage
Coverage Criteria
Mutation Redundancy
46. For the statement if( a || b) , which is not a mutant?
if(a && b)
if(a & b)
if( a | b)
if( a || b)
47. Mutants which result in programs which are behaviourally equivalent to the original one are called ______
Statement coverage
Condition coverage
Equivalent Mutants
Dead Mutants
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?
example(0,0)
example(1,0)
example(0,1)
example(1,1)
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?
ex(1,2)
example(3,4)
example1(1,2)
etra(2,3)
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?
example(1,1)
example(0,1)
example(1,1) and example(0,1)
example(1,1) and example(1,1)
Submit