Access specifiers which can be used for an interface are?
Access specifiers which can be used for an interface are? Correct Answer Public
Access specifier of an interface is either public or none. When no access specifier is specified then only default access specifier is used due to which interface is available only to other members of the package in which it is declared, when declared public it can be used by any code declared anywhere in the class area.