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 empty parentheses () after the method name?

This method takes in no parameters.
  • We know this method can be accessed by other Java classes.
  • 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