For this question, consider the following interface:

public interface Speakable
{
    public void speak();
}

What do we know when we see a class that implements Speakable?

The class will have a speak() method that takes no parameters.
  • The class will have a speak() method that takes two parameters.
  • We won't know anything.
  • The class will have 5 methods all with the name speak().

There are no hints for this question