Computer Science, asked by sadhnasingh8381, 5 months ago

Give the output of following statements:- a=10, b=200, print(a>100 and b>200)​

Answers

Answered by swastikrout1973
4

The output would be:

False

False

Answered by anindyaadhikari13
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