29. Evaluate the following for each expression that is successfully evaluated, determine its value and type for unsuccessful expression, state the reason.

(a) len(“hello”) == 25/5 or 20/10 is True because 5 == 5 is True

b) 3 < 5 or 50/(5 – (3 + 2)) is True because 3 < 5 is True

(c) 50/(5 – (3 + 2)) or 3 < 5 raises Error because 50 is being divided by 0

d) 2 * (2 * (len(“01”))) is 8 because len(“01”) is equal to 2