Variables declared inside interface can be..?
-
public
-
default
-
static
-
final
A,C,D
Correct answer
Explanation
Variables declared in an interface are implicitly public, static, and final. They must be initialized as they become constants. Interface variables cannot have other access modifiers or be instance variables. Option B is incorrect - 'default' is not an explicit access modifier for interface variables.