✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
interface I { void m(); }
class C implements I {
public void m(){ System.out.println("ok"); }
}
public class Main {
public static void main(String[] args){
I i = new C();
i.m();
}
}