Given a set of Boolean conditions A, B, C and D. a. Give a truth-value assignment for A, B, C and D that can make the expression �̅∨ � ∨ �̅∨ � to be evaluated as false.
I cannot understand what means "to give a truth- value assignment.
I tried in Python this code:
if a != a or b or c != c or d:
print("True")
else:
print ("False")
Output
False