11. && (AND) is true when both the conditions are true
2
3 “1 and 0” is evaluated as false
4
5 “0 and 0” is evaluated as false
6
7 “1 and 1” is evaluated as true
8
92. || (OR) is true when at least one of the conditions is true. (1 or 0 = 1)(1 or 1 = 1)
10
113. ! returns true if given false and false if given true.
12
13 !(3==3) evaluates to false
14
15 !(3>30) evaluates to true