Question 1 |
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 | |
45,45 |
Question 1 Explanation:
Question 2 |
Consider the following pseudo-code
I=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 while-2
I=I+1;
}// end of while-1
The cyclomatic complexity of the above is3 | |
2 | |
4 | |
1 |
Question 2 Explanation:
Question 3 |
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 per million lines of code |
Question 3 Explanation:
Question 4 |
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
Mean Time Between Failures (MTBF) is 20 days
Mean Time To Repair (MTTR) is 20 hours
90% | |
96% | |
24% | |
50% |
Question 4 Explanation:
Question 5 |
Regression testing is primarily related to
Functional testing | |
Development testing | |
Data flow testing | |
Maintenance testing |
Question 5 Explanation:
There are 5 questions to complete.
Answer of Q43 will be C.
Answer D is correct.
No, option C Data coupling is the right answer.
Can you Please specify the question number?