Retrievecustomeraddress() void printaddressofcustomer(char* address) retrievecustomeraddress() retrieves the address of the customer from the database and pass it to the printaddressofcustomer method that takes only the address of the customer and prints it in the console. What type of coupling is exhibited between these two modules?
Answers
Answered by
15
Answer:
Answer :This is a loosely coupled modules .The phenomenon of Coupling is a measurement of the interrelationships or dependency among two modules. Coupling is the measures of likelihood of a change or fault in one module created by another module.
Design :Designing methods of Loosely Coupled Modules.There are multiple types of interfaces that can be applied to communicate between modules.
The phenomena of Coupling between modules can be obtained by passing parameters, using global data base , or by referencing the available contents of another module.
Explanation:
Answered by
40
Answer:
This is data coupling.
Similar questions