Question 1

What value of x will produce the output?

Hi

Mike

x=

if(x!=1):

  print('Hello')

else:

  print('Hi')

print('Mike')



Question 2

What is the output of the following code?

x="Go"

if(x=="Go"):

  print('Go ')

else:

  print('Stop')

print('Mike')


Question 3

What is the result of the following lines of code?

x=1
x>-5