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 == False)
and if(x != True)
will do thisif(x)
if(!x)
if(x == False)
if(x != True)
if(x)
and if(!x)
will do this There are no hints for this question