Computer Science, asked by parasshukla05, 4 hours ago

What will be the result of the expression 'false' and False?
a) false b) False c) 'false' d) 'False'
Please don't delete this question this time I really need its answer
I'll mark brainliest right now too.

Answers

Answered by amd78805
1

Answer:

The first expression False==True is evaluated to False . Now the expression becomes False or False so it results in False . print(False==(False or True)) the second part of the expression (False or True) results in True as () has the highest precedence and False==True is False .

Explanation:

please mark me as brainliest

Similar questions