Which of the following statements return true?

(true && true) == truetrue && true(true && true) == falsetrue && false

Nailed it! The logical and returns true if (and only if) both boolean-type values are true. In every other case, the result is false.

Whoops! The logical and returns true if (and only if) both boolean-type values are true. In every other case, the result is false.