What is the difference between "verification suites" run in a CI pipeline and "manual exploratory testing" performed before a major release?
Correct! Well done.
Incorrect.
The correct answer is A) CI pipeline suites run automated, repeatable checks quickly and consistently on every change; manual exploratory testing relies on human judgment and creativity to find issues automated tests may miss, done less often due to its time cost
Correct Answer
CI pipeline suites run automated, repeatable checks quickly and consistently on every change; manual exploratory testing relies on human judgment and creativity to find issues automated tests may miss, done less often due to its time cost
Automated CI tests provide fast, consistent feedback on known scenarios with every code change, while exploratory testing leverages human intuition to probe for unexpected issues — both play complementary roles in a quality strategy.