Applying the _________ pattern to a class means removing the creation of all object instances for which this class isn’t directly responsible and passing any needed instances instead.
Applying the _________ pattern to a class means removing the creation of all object instances for which this class isn’t directly responsible and passing any needed instances instead. Correct Answer Inversion Of Control
The instances may be passed using a specific constructor, using a setter, or as parameters of the methods needing them.