3460:421 OOP S22 Coupling

123456789101112131415161718
Across
  1. 2. The goal of coupling is to _____ external interaction
  2. 5. Loosely-coupled modules are easier to _____ separately
  3. 6. Tightly-coupled modules lose a lot of _____
  4. 8. One module passes more data than needed to another module is _____ coupling
  5. 11. One module only passes the data required by another module is _____ coupling
  6. 13. Tightly-coupled modules can be more _____
  7. 14. A low degree of coupling is _____ coupled
  8. 16. A special kind of coupling, _____ coupling, is between a derived and base class
  9. 17. Coupling is an _____ measure
  10. 18. Functions exchange data using global data instead of arguments is _____ coupling
Down
  1. 1. Coupling has a significant effect on the _____ of a system
  2. 3. Loosely-coupled modules allow us to easily _____ individual parts
  3. 4. Client code passes parameters via a non-private data format is _____ coupling
  4. 7. A high degree of coupling is _____ coupled
  5. 9. When a module directly references the content of another module, is _____ coupling
  6. 10. Classes with zero to minimal coupling are _____
  7. 12. Loosely-coupled modules allow us to easily _____ individual parts
  8. 15. The client passes a flag or command that explicitly controls what the called code is doing is _____ coupling