edited by
2,399 views

1 Answer

1 votes
1 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:

Related questions

2 votes
2 votes
1 answer
1
Satbir asked Jan 13, 2020
2,568 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
2
Satbir asked Jan 13, 2020
1,345 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
2 answers
3
Satbir asked Jan 13, 2020
3,713 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\%...
2 votes
2 votes
1 answer
4
Satbir asked Jan 13, 2020
1,405 views
Regression testing is primarily related toFunctional testingDevelopment testingData flow testingMaintenance testing