Q1. In structured design, a module M calls modules P, Q, R, S and T. Each called module performs a different step of the same transaction, but all five need to know only a transaction identifier passed as a parameter. Which assessment is most accurate?
Explanation
Fan-out is about how many modules a module directly controls or calls. Coupling is about the dependency between modules; passing only the needed transaction identifier is a lighter dependency than using shared globals or control flags.
