What is loosely coupled and tightly coupled in MVC?
What is loosely coupled and tightly coupled in MVC?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
DarilPosted Nov 11, 2021, 11:33 AM
Tight coupling is when a group of classes are highly dependent on one another.
This scenario arises when a class assumes too many responsibilities, or when one concern is spread over many classes rather than having its own class.
Loose coupling is achieved by means of a design that promotes single-responsibility and separation of concerns.
A loosely-coupled class can be consumed and tested independently of other classes.
Suraj KumarPosted Jan 19, 2018, 6:11 AM
Rajeesh MenothPosted Jan 19, 2018, 6:10 AM