Multiple choice Which of the following is an incorrect statement about 'Proxy' pattern? It falls under 'Structural' pattern. It maintains a reference to an object of type implementer. It defines an interface having members that will be implemented by RealSubject and Proxy class. This is a class which we want to use more efficiently by using proxy class. This is a class which holds the instance of RealSubject class and can access RealSubject class members as required. Reveal answer Fill a bubble to check yourself B Correct answer Explanation Proxy pattern does not use such object reference. Bridge pattern is used for that.