What are the 5 Solid principles?
What is inversion of control?
Inversion of control is a design principle which states that objects should be created and managed by a framework
True or False
Once the first layer is debugged, its correct functioning can be assumed while the second layer is debugged, and so on. If an error is found during the debugging of a particular layer, the error must be on that layer, because the layers below it are already debugged. Thus, the design and implementation of the system are simplified
True
True or False
A monolithic system is tightly coupled whereas a layered system is losely coupled. Layer 0 is the layer that is closest to hardware and layer n is the user
True