What type of variable can be defined in an interface?

a) public static
b) private final
c) public final
d) static final

1 thought on “What type of variable can be defined in an interface?”

  1. d
    Explanation: variable defined in an interface is implicitly final and static. They are usually written in capital letters.

Leave a Comment