Consider the following variable declaration within the definition of an interface:
int i = 10;
Which of the following declarations defined in a non-abstract class, is equivalent to the above?
Select 1 option
Correct Option is : C
Fields in an interface are implicitly public, static and final.