Multiple choice technology programming languages

What all points to be considered while doing testing?

  1. Run the test scripts related to change

  2. Check the existing functionality

  3. do some negative/boundary condition

  4. all of them

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Comprehensive testing requires running test scripts for the specific change (A), verifying existing functionality still works (B), and testing negative/boundary conditions (C). All three aspects together ensure quality. Only doing one or two types leaves gaps in test coverage and can miss regressions or edge cases.