A truth table shows the output for every possible input combination. For AND with inputs and :
A | B | A && B
----- | ----- | ------
false | false | false
false | true | false
true | false | false
true | true | true
Notice: only the last row is true. This is the defining property of AND. Both inputs must be true or the result fails.