public interface Foo { int k = 4; /* Line 3 */ }Which three piece of codes are equivalent to line 3?1. final int k = 4;2. public int k = 4;3. static int k = 4;4. abstract int k = 4;5. volatile int k = 4;6. protected int k = 4;
Download the Study24x7 App, so you can connect and collaborate.