Discuss loose coupling.

What will be an ideal response?

Loose coupling occurs when a copy of data that must be shared is passed from one method to another. That way, the sharing of data is always purposeful-variables must be
explicitly passed to and from methods that use them. The loosest (best) methods pass single arguments if possible, rather than many variables or entire records.

Computer Science & Information Technology

You might also like to view...

What is the output of the following C++ code?int alpha[5] = {2, 4, 6, 8, 10};int j;for (j = 4; j >= 0; j--)  cout

A. 2 4 6 8 10 B. 4 3 2 1 0 C. 8 6 4 2 0 D. 10 8 6 4 2

Computer Science & Information Technology

The Transport Layer is responsible for communication between host computers.

a. true b. false

Computer Science & Information Technology