Which of the following access specifiers can be used for an interface?

a) Protected
b) Private
c) Public
d) Public, protected, private

1 thought on “Which of the following access specifiers can be used for an interface?”

  1. a
    Explanation: Interface can have either public access specifier or no specifier. The reason is they need to be implemented by other classes.

Leave a Comment