Post

@PythonDvz No output, as
x**2>100 and y<100 ➛ is a false assertion:
100>100 is False
English

@PythonDvz C. The AND condition in the IF statement is False, so nothing will print, so No Output
English

@PythonDvz c, no output. x squared is exactly 100 and 100 is not greater than 100, so the first condition is already false. the and short circuits right there and never even checks y. everyone trips on the strict greater than
English

@PythonDvz C. No Output
Reason:
The statement if x**2 > 100 and y < 100 evaluates to false.
x**2 = 10**2 = 100
100 > 100 = False
y = 50
50 < 100 = True
So False and True = False
Hence No output.
English






