Answer:

Row four.

Another Truth Table

Here is another truth table that shows the operands combined with an || operator.

x < 12 y > 10 x < 12 || y > 10
F F
F T
T F
T T

The first several columns of a truth table show all possible boolean values of the operands. (In this table the operands are relational expressions.) The remaining columns show how these values are combined by the logical operators.

QUESTION 3:

Decide on values for the last column.