21. Write following expressions in Python
21. Write following expressions in Python Read More »
a) b and c : False b) b or c : True c) not a and b : True d) (a and b) or not c : True e) not b and not (a or c) : False f) not ( ( not b or not a ) and c) or a : True