edited by
4,889 views

1 Answer

3 3 votes
To make the class maximally cohesive, every method should be related to every other method.

It is like a complete graph of 10 vertices. i.e.,

n(n-1)/2

10(9)/2=45,  and all these were direct connections

hence option b is the answer
Answer:
Position:
Show:

Related questions

3 3 votes
1 1 answer
4.8k
4.8k views
Satbir asked Jan 13, 2020
4,766 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,638 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,752 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\%...
3 3 votes
1 1 answer
2.5k
2.5k views
Satbir asked Jan 13, 2020
2,539 views
Regression testing is primarily related toFunctional testingDevelopment testingData flow testingMaintenance testing