English, asked by pmohan0608, 1 month ago

Which of the following questions are relevant to the High Cohesion principle of the GRASP approach to object-
oriented design?​

Answers

Answered by anjalirehan04
56

The correct answers are; Is this object doing things that another object should be responsible for? Do the functions that this object perform make sense for what this object is? Are the responsibilities of this object as focused as possible?

please mark me brain mark list

Answered by abhiakhi006
38

Answer:

Is this object doing things that another object should be responsible for?

Do the functions that this object perform make sense for what this object is?

Are the responsibilities of this object as focused as possible?

Explanation:

The user interface objects deal with receiving and handling events initiated by the user. A controller object receives a request and assigns it to the proper object. The user interface objects deliver requests directly to the proper object.

Similar questions