Which of these statements check if b1 and b2 are both true?

b1 && b2(b1 == true) && (b2 == true)b1 || b2b1 == b2

Great! We can use the logical and to check that. Doing so, we can but don't have to compare the variables with true.

So close! We can use the logical and to check that. Doing so, we can but don't have to compare the variables with true.