1A class can implement any number of interfaces.
2 In this case there is no ambiguity even
3 though both the interfaces are having same method.
4 Because methods in an interface are always
5 abstract by default, which doesn’t let them
6 give their implementation
7 in interface itself.
8