Built in Types Truth Table 2

You might also like

Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 1

Built-in types Exercise 3: Truth Table

(!(a&&b)&&(a||b))||((a&&b)||!(a||b))

1 2 3 4 5 6 7 8 9
a b !(a && a || b ( 3 && 4 a && b !(a || b) ( 6 || 7 ) ( 5 || 8 )
b) )
F F T F F F T T T
F T T T T F F F T
T F T T T F F F T
T T T F F T F T T

You might also like