Assume for this question, the following conditional

if (!(!this.hasFlower()))

Which of the following is logically equivalent?

if (this.hasFlower())
  • if (!this.hasFlower())
  • if (this.hasFlower() && !this.hasFlower)

There are no hints for this question