In binary operations, you can (basically) replace:
OR by + (addition)
AND by x (multiplication)
true by 1
false by 0
As in mathematics you always calculate multiplication before addition, you always check AND before OR
Which means:
a OR d OR c AND e could be written:
= a + d + c x e
= 0 + 1 + 1 x 0
= 0 + 1 + (1 x 0)
= 0 + 1 + 0
=1
= true
The correct result is True ;)