What is wrong with below source code?
interface IShape
{
void f1();
void f2();
void f3();
}
class Circle implements IShape
{
public void f1()
{
}
}


Posted on by