Computer Science, asked by Amanmessi, 1 year ago

(5==5)&&(4>5). can you please solve this

Answers

Answered by Incredible29
2
Hello user
Here is your answer !!

The output of the following code is FALSE .

Now , && (and) operator returns true only if both the conditions are true .

But in the above code , (5==5) is true , but (4>5) is false .

Hence , && (and) operator will return False as output .

Hope it helps !!
Similar questions