edited by
3,766 views
2 votes
2 votes

What is the availability of the software with the following reliability figures

Mean Time Between Failures (MTBF) is $20$ days

Mean Time To Repair (MTTR) is $20$ hours

  1. $90\%$
  2. $96\%$
  3. $24\%$
  4. $50\%$
edited by

2 Answers

3 votes
3 votes

GIven MTBF = 20 days = $20\times24 = 480$ hours.
MTTR = 20 hours.

$Availability = \frac{MTBF}{MTBF+MTTR}\times100$
$\rightarrow\frac{480}{480+20}\times100=\frac{480}{500}\times10=96\%$

Option B

2 votes
2 votes
GIven MTTR = 20 hrs , MTBF = 20 days , converting it to hrs we get 20*24 =480 hrs , now MTTF= MTBF-MTTR =n480-20=460. , Availability we have = MTTF/MTBF = 460/480 = 0.958 approximately = 96%
Answer:

Related questions

3 votes
3 votes
1 answer
1
Satbir asked Jan 13, 2020
2,456 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,624 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,384 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
1 answer
4
Satbir asked Jan 13, 2020
1,446 views
Regression testing is primarily related toFunctional testingDevelopment testingData flow testingMaintenance testing