Answer:
inject, update
Step-by-step explanation:
Dependency injection is a concept in object-oriented programming that links or transfers the functionality of an independent class to a dependent class.
Assuming two classes, Vehicle and Bus are created, the Bus class inherits from the Vehicle. The Bus class is dependent on the Vehicle class and its instances create instances of the Vehicle object.
It is easier and faster to update the Bus class and other classes that inherit from the Vehicle class by updating only the Vehicle class.