Accenture Interview Question

Can we implement multiple interfaces in a single Java class?

Interview Answer

Anonymous

Mar 4, 2022

Yes, it is allowed to implement multiple interfaces in a single class. In Java, multiple inheritances is achieved by implementing multiple interfaces into the class. While implementing, each interface name is separated by using a comma(,) operator.