【正文】
losed” OOD principle mean: A. open for modifications, closed for extension B. open for extension, closed for modifications C. open for inheritance, closed for extension D. open for extension, closed to inheritance 14. “Functions that use pointers or references to base classes must be able to use objects of derived classes without knowing it” Which OOD principle is the above description: A. SRP (Single Responsibility Principle) B. LSP (Liskov Substitution Principle ) C. ISP (Interface Segregation Principle) D. OCP (OpenClosed Principle) 15. “Only municate with your direct friends” “Do not speak with foreigners” For which OOD principle is the above popular description? A. DIP (Dependency Inversion Principle) B. LKP (Least Knowledge Principle) C. ISP (Interface Segregation Principle) D. OCP (OpenClosed Principle) 16. For Decorator pattern and Proxy pattern, which one of below is wrong: A. Proxy provides the same interface. Decorator provides an enhanced interface. B. Both of them describe how to provide a level of indirection to another object C. Both of their implementations keep a reference to the object to which they forward requests D. Both of them support recursiv