Multiple choice age = 16 and fave = "blue" which of the following statement is true? if (age == 16 AND fave == blue) if (age > "16" AND fave == "blue") if (age == "16" AND fave == "blue") if (age == 16 AND fave == "blue") Reveal answer Fill a bubble to check yourself D Correct answer Explanation Option D correctly compares the integer 16 and the string "blue" using the logical AND operator.