Give the output of following statements:- a=10, b=200, print(a>100 and b>200)
Answers
Answered by
4
The output would be:
False
False
Answered by
9
Answer:-
Here,
a=10 and b=200
a>100 is false as a is less than 100
Also,
b>200 is false as b is equal to 200
So,
the expression returns false.
Output:-
False.
Similar questions