
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
Analyze the statements below about regression testing and mark V, if true, or F, if false.
() A well-planned regression test suite should contain two types of test cases: those focused on components directly related to the change and those that exercise existing functionalities that may have been affected by the change.
() Manual execution of regression testing is unfeasible.
() Regression testing can be related to both functional testing and non-functional testing.
The correct order of filling in the parentheses, from top to bottom, is:
A
F – V – F.
B
V – V – V.
C
V – F – V.
D
F – F – F.
E
F – F – V.
Explanation:
Explanation:
First statement (V - True): A well-planned regression test suite should indeed contain both types of test cases: those focused on components directly related to the change (to verify the change works correctly) and those that exercise existing functionalities that may have been affected by the change (to ensure no unintended side effects). This is a fundamental principle of regression testing.
Second statement (F - False): Manual execution of regression testing is NOT inherently unfeasible. While automated regression testing is preferred for efficiency and repeatability, manual regression testing is still feasible and sometimes necessary, especially for exploratory testing, usability testing, or when automation is not yet implemented. The statement is too absolute.
Third statement (V - True): Regression testing can indeed be related to both functional testing (verifying business requirements still work) and non-functional testing (ensuring performance, security, or other quality attributes haven't regressed). For example, after a performance optimization, you'd run regression tests to ensure performance hasn't degraded elsewhere.
Therefore, the correct sequence is V – F – V, which corresponds to option C.