edited by
1,440 views
2 votes
2 votes

Regression testing is primarily related to

  1. Functional testing
  2. Development testing
  3. Data flow testing
  4. Maintenance testing
edited by

1 Answer

4 votes
4 votes

Option d) is correct

Regression testing is done to make sure that new code changes should not have side effects on the existing functionalities. It ensures that the old code still works once the latest code changes are done which is related to maintenance testing

Answer:

Related questions

3 votes
3 votes
1 answer
1
Satbir asked Jan 13, 2020
2,446 views
In a class definition with $10$ methods, to make the class maximally cohesive, number of direct and indirect connections required among the methods are$90,0$$45,0$$10,10$...
2 votes
2 votes
1 answer
2
Satbir asked Jan 13, 2020
2,610 views
Consider the following pseudo-codeI=0; J=0; K=8; while(I<K-1) //while-1 { J=J+1; while(J<K) //while-2 { if(x[I]<x[J]) { temp = x[I]; x[I]=x[J]; x[J]=temp; } }// end of wh...
2 votes
2 votes
1 answer
3
Satbir asked Jan 13, 2020
1,377 views
What is the defect rate for Six sigma?$1.0$ defect per million lines of code$1.4$ defects per million lines of code$3.0$ defects per million lines of code$3.4$ defects pe...
2 votes
2 votes
2 answers
4
Satbir asked Jan 13, 2020
3,754 views
What is the availability of the software with the following reliability figuresMean Time Between Failures (MTBF) is $20$ daysMean Time To Repair (MTTR) is $20$ hours$90\%...