
Answer:
public interface Breakable
{
 public void break(); Â
public boolean broken();
}
Explanation:
Here is the interface named Breakable
This interface has two functions break() and broken()
break() method has no parameters
broken() method returns a boolean result. As you can see boolean keyword is written before the method name  which basically return true or false.