Is the following declaration for interface Bendable correct and free of compilation error?
abstract interface Bendable { // line 1 final int x = 2009; // line 3 void method1() {}; // line 5 }
Yes, this is a correct and free of error declaration
No, compilation error at line 1
No, compilation error at line 3
No, compilation error at line 5