Assume for this question, the following method stub:

public boolean hasFlowers()
{
    // code would go here
}

When we look at this method, what do we know when we see the keyword public?

We know this method can be called by other Java classes.
  • We don't know anything.
  • We know this method will be examining how many flowers a jeroo has.
  • This method will return a boolean value.

There are no hints for this question