retagged by
5,408 views
4 4 votes

A software was tested using the error seeding strategy in which 20 errors were seeded in the code. When the code was tested using the complete test suite, 16 of the seeded errors were detected. The same test suite also detected 200 non-seeded errors. What is the estimated number of undetected errors in the code after this testing?

  1. 4
  2. 50
  3. 200
  4. 250

2 Answers

Best answer
10 10 votes

estimated no of undetected errors in the code after testing=n(S-s)/s=200*(20-16)/16=50...

n=no of defects be found by testing
S=total no of seeded errors
s=defects found during testing

selected by
2 2 votes
Correct Answer: $B.$ $50$

Test suite detects 16 seeded errors with 200 non-seeded errors.

Total seeded errors = 20.

So, When test suite detects 20 errors it will detect = (200/16)*20 = 250 non-seeded errors.

Thus, estimated number of undetected errors in the code = (250 - 200) = 50.
Answer:
Position:
Show:

Related questions

3 3 votes
1 answers 1 answer
6.3k
6.3k views
Ishrat Jahan asked Nov 2, 2014
6,262 views
What is the availability of a software with the following reliability figures?Mean Time Between Failure (MTBF) = 25 daysMean Time To Repair (MTTR) = 6 hours1%24%99%99.009...
3 3 votes
2 answers 2 answers
4.3k
4.3k views
Ishrat Jahan asked Nov 2, 2014
4,253 views
Assume that the delivered lines of code L of a software is related to the effort E in person months and duration t in calendar months by the relation L P* (E/B)1/3 * t4/3...
3 3 votes
1 answers 1 answer
5.8k
5.8k views
Ishrat Jahan asked Nov 2, 2014
5,815 views
Consider the following program module:int module1 (int x, int y) { while (x! = y) { if (x y) x = x - y, else y = y - x; } return x; }What is Cyclomatic complexity of the...
3 3 votes
2 answers 2 answers
10.3k
10.3k views
Ishrat Jahan asked Nov 2, 2014
10,306 views
A software project involves execution of 5 tasks T1, T2, T3, T4 and T5 of duration 10, 15, 18, 30 and 40 days, respectively. T2 and T4 can start only after T1 completes. ...