Assume we have a boolean variable x. We want to make an if statement that will run if x is not true. Which of the following conditional statements would do this?

if (!x)
  • if (x)
  • if (x is false)
  • Both if (x) and if (!x) will do this

There are no hints for this question