If a, b and c are boolean variables such that a is false, b is true and c is true, which of these expressions:
1. a || (b && c)
2. !a && (!b || c)
3. !(a && b) && c
evaluate(s) to true?
1. a || (b && c)
2. !a && (!b || c)
3. !(a && b) && c
Computer Science & Information Technology