edited by
2,545 views

1 Answer

5 5 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:
Position:
Show:

Related questions

5 5 votes
1 1 answer
4.9k
4.9k views
Satbir asked Jan 13, 2020
4,899 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$...
3 3 votes
1 1 answer
4.8k
4.8k views
Satbir asked Jan 13, 2020
4,773 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...
4 4 votes
1 1 answer
2.6k
2.6k views
Satbir asked Jan 13, 2020
2,644 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...
3 3 votes
2 2 answers
5.8k
5.8k views
Satbir asked Jan 13, 2020
5,760 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\%...