Q. What will be the output for the below code?
public interface TestInf{
int i =10;
}
public class Test{
public static void main(String... args){
TestInf.i=12;
System.out.println(TestInf.i);
}
}
β
Correct Answer: (A)
Compile with error
Explanation: All the variables declared in interface is implicitly static and final , therefore can't change the value.