18. Differentiate between (555/222)**2 and (555.0/222)**2.
There will be no difference because division operator always returns a float value even if the operands are integers.
18. Differentiate between (555/222)**2 and (555.0/222)**2. Read More »
There will be no difference because division operator always returns a float value even if the operands are integers.
18. Differentiate between (555/222)**2 and (555.0/222)**2. 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