What are coupling and cohesion?
What are coupling and cohesion? Coupling The degree of dependency between the component is called coupling. If the dependency is more then it is considered as tightly coupling and dependency are less then it is considered as loosely coupling. Example Class A{ static int i=B.j } Class B{ Static int . . . Read more