Problem Statement
In Java, what are the properties of variables declared inside an interface by default?
Explanation
In Java interfaces, variables are implicitly public, static and final (constants). They cannot be instance variables that vary per object.