(1)Which one of the following is a key difference between the Adapter
and Facade Structural Design
Patterns?
a)The Adapter defines a new Interface; the Facade reuses an existing one.
b)Facade is an extension of the Adapter.
c)The Adapter defines a new Interface; the Facade combines two existing Interfaces.
d)The Facade defines a new Interface; the Adapter reuses an existing one.
e)The Facade defines a new Interface; the Adapter combines two existing Interfaces
I think d is correct. An adapter does not define a new interface. What do you all think